From 695fa7a0e060bbbaa21d4f6ff77b5248001bd42b Mon Sep 17 00:00:00 2001 From: David Blum Date: Thu, 1 Aug 2024 11:43:18 -0700 Subject: [PATCH] Remove javascript example controller --- README.md | 8 +- examples/javascript/Dockerfile | 27 - examples/javascript/makefile | 28 - examples/javascript/testcase1.html | 317 - examples/javascript/testcase2.html | 313 - examples/javascript/wrapper.py | 77 - releasenotes.md | 1 + testing/makefile | 12 +- .../references/testcase1/kpis_javascript.csv | 10 - .../testcase1/results_javascript.csv | 5762 ----------------- .../references/testcase2/kpis_javascript.csv | 10 - .../testcase2/results_javascript.csv | 5762 ----------------- testing/test_testcase1.py | 32 - testing/test_testcase2.py | 32 - 14 files changed, 4 insertions(+), 12387 deletions(-) delete mode 100644 examples/javascript/Dockerfile delete mode 100644 examples/javascript/makefile delete mode 100644 examples/javascript/testcase1.html delete mode 100644 examples/javascript/testcase2.html delete mode 100644 examples/javascript/wrapper.py delete mode 100644 testing/references/testcase1/kpis_javascript.csv delete mode 100644 testing/references/testcase1/results_javascript.csv delete mode 100644 testing/references/testcase2/kpis_javascript.csv delete mode 100644 testing/references/testcase2/results_javascript.csv diff --git a/README.md b/README.md index 9b1f1833d..c0dceed60 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ that is being developed as part of the [IBPSA Project 2](https://ibpsa.github.io ## Structure - ``/testcases`` contains test cases, including docs, models, and configuration settings. -- ``/examples`` contains code for interacting with a test case and running example tests with simple controllers. Those controllers are implemented in Python (Version 2.7 and 3.9), Julia (Version 1.0.3), and JavaScript (Version ECMAScript 2018). +- ``/examples`` contains code for interacting with a test case and running example tests with simple controllers. Those controllers are implemented in Python (3.9) and Julia (Version 1.0.3). - ``/parsing`` contains code for a script that parses a Modelica model using signal exchange blocks and outputs a wrapper FMU and KPI json. - ``/testing`` contains code for unit and functional testing of this software. See the README there for more information about running these tests. - ``/data`` contains code for generating and managing data associated with test cases. This includes boundary conditions, such as weather, schedules, and energy prices, as well as a map of test case FMU outputs needed to calculate KPIs. @@ -50,12 +50,6 @@ that is being developed as part of the [IBPSA Project 2](https://ibpsa.github.io * Build and deploy ``testcase2``. Then, in a separate terminal, use ``$ cd examples/julia && make build Script=testcase2 && make run Script=testcase2`` to test a simple supervisory controller on this test case over a two-day period. Note that the Julia-based controller is run in a separate Docker container. * Once either test is done, use ``$ make remove-image Script=testcase1`` or ``$ make remove-image Script=testcase2`` to removes containers, networks, volumes, and images associated with these Julia-based examples. -* For JavaScript-based example controllers: - * In a separate terminal, use ``$ cd examples/javascript && make build Script=testcase1 && make run Script=testcase1`` to test a simple proportional feedback controller on the testcase1 over a two-day period. - * In a separate terminal, use ``$ cd examples/javascript && make build Script=testcase2 && make run Script=testcase2`` to test a simple supervisory controller on the testcase2 over a two-day period. - * Ince the test is done, use ``$ make remove-image Script=testcase1`` or ``$ make remove-image Script=testcase2`` to removes containers, networks, volumes, and images, and use ``$ cd examples/javascript && rm geckodriver`` to remove the geckodriver file. - * Note that those two controllers can also be executed by web browers, such as chrome or firefox. - ## Test Case RESTful API - To interact with a deployed test case, use the API defined in the table below by sending RESTful requests to: ``http://127.0.0.1:5000/`` - The API will return a JSON in the form ``{"status":, "message":, "payload":}``. Status codes in ``"status"`` are integers: ``200`` for successful with or without warning, ``400`` for bad input error, or ``500`` for internal error. Data returned in ``"payload"`` is the data of interest relvant to the specific API request, while the string in ``"message"`` will report any warnings or error messages to help debug encountered problems. diff --git a/examples/javascript/Dockerfile b/examples/javascript/Dockerfile deleted file mode 100644 index b422c3ee9..000000000 --- a/examples/javascript/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -FROM ubuntu:18.04 - -ARG testcase - -RUN apt-get update && \ - apt-get install -y \ - python3.7 \ - python3-pip \ - firefox \ - wget - -RUN python3.7 -m pip install --upgrade pip - -RUN python3.7 -m pip install splinter urllib3 pandas selenium - -ENV PATH $PATH:/home - -WORKDIR /home - -RUN cd /home && \ - wget https://github.com/mozilla/geckodriver/releases/download/v0.33.0/geckodriver-v0.33.0-linux64.tar.gz && \ - tar -xvzf geckodriver* && \ - rm geckodriver-* - -COPY wrapper.py ./ - -COPY ${testcase}.html ./ diff --git a/examples/javascript/makefile b/examples/javascript/makefile deleted file mode 100644 index 9f1472845..000000000 --- a/examples/javascript/makefile +++ /dev/null @@ -1,28 +0,0 @@ -IMG_NAME=javascript_controller_${Script} - -COMMAND_RUN=docker run \ - --name ${IMG_NAME} \ - --detach=true \ - --rm \ - -it \ - --network host \ - ${IMG_NAME} /bin/bash - -build: - docker build --build-arg testcase=${Script} --no-cache --rm -t ${IMG_NAME} . - -remove-image: - docker rmi ${IMG_NAME} - -run: - $(COMMAND_RUN) && \ - docker exec -it ${IMG_NAME} /bin/bash -c "python3.7 wrapper.py ${Script}" && \ - make copy_from_container ARGS=. && \ - docker stop ${IMG_NAME} - -copy_from_container: - docker cp ${IMG_NAME}:/home/${ARGS} ${ARGS} - -stop: - docker stop ${Script} - \ No newline at end of file diff --git a/examples/javascript/testcase1.html b/examples/javascript/testcase1.html deleted file mode 100644 index 0ec32e211..000000000 --- a/examples/javascript/testcase1.html +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - -
-Request: -
-
- - -
-output: -
-
-
-result: -
-
-
-kpi: -
-
-
-
- -
- -
-
- - - - - - diff --git a/examples/javascript/testcase2.html b/examples/javascript/testcase2.html deleted file mode 100644 index 468817cd2..000000000 --- a/examples/javascript/testcase2.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - -
-Request: -
-
- - -
-output: -
-
-
-result: -
-
-
-kpi: -
-
-
-
- -
- -
-
- - - - - - diff --git a/examples/javascript/wrapper.py b/examples/javascript/wrapper.py deleted file mode 100644 index 84c1648b7..000000000 --- a/examples/javascript/wrapper.py +++ /dev/null @@ -1,77 +0,0 @@ -from splinter.browser import Browser -import os.path -import time -import sys -import pandas as pd -import traceback - -########## running the browser in a headless mode ########## - -browser = Browser('firefox', headless=True) - -########## execute individual html file ########## - -browser.visit('file://' + os.path.realpath('/home/{}.html'.format(sys.argv[1]))) - -testcase = sys.argv[1] - -sim_tim = 0 - -sim_length = 48*3600 - -while sim_tim < sim_length: - - ########## record the data for simulation output ########## - - elements = browser.find_by_id("output") - - ########## extract the simulation time ########## - - div = elements[0] - if div.value !='': - result= eval(div.value) - sim_tim = result['time'] - -########## extract the final simulation output ########## - -try_results = True -while try_results: - try: - results = browser.find_by_id("result") - div = results[0] - if div.value !='': - result= eval(div.value) - tab=pd.DataFrame(result) - try_results = False - except: - try_results = True - -tab_y = pd.DataFrame(result) -tab = tab.set_index('time') -tab.to_csv('/home/result_{}.csv'.format(testcase)) - -########## extract the kpi output ########## - -try_kpi = True -while try_kpi: - try: - kpis = browser.find_by_id("kpi") - - div = kpis[0] - - if div.value !='': - kpis_string = div.value.replace('null', 'None') - kpis= eval(kpis_string) - - tab_kpi = pd.DataFrame.from_dict(kpis, orient='index', columns=['value']) - tab_kpi.index.name = 'keys' - tab_kpi.to_csv('/home/kpi_{}.csv'.format(testcase)) - try_kpi = False - except AttributeError: - try_kpi = True - except: - traceback.print_exc() - raise Exception('See traceback for Exception message.') -########## kill the browser process ########## - -browser.quit() diff --git a/releasenotes.md b/releasenotes.md index 891985898..1bfbe2bd9 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -11,6 +11,7 @@ Released on xx/xx/xxxx. - Add a warning message upon test case compilation in ``data/data_manager.py`` that is displayed if any of the weather variables in ``data/categories.json`` is not in ``/resources/weather.csv``. This is for [#500](https://github.com/ibpsa/project1-boptest/issues/500). - Remove matplotlib requirement from travis unit testing. This is for [#655](https://github.com/ibpsa/project1-boptest/issues/655). - Specify version of scipy to 1.13.0 in test case Dockerfile. This is for [#657](https://github.com/ibpsa/project1-boptest/issues/657). +- Remove javascript controller example. This is for [#664](https://github.com/ibpsa/project1-boptest/issues/664). ## BOPTEST v0.6.0 diff --git a/testing/makefile b/testing/makefile index 28cfadb86..582555f9c 100644 --- a/testing/makefile +++ b/testing/makefile @@ -112,16 +112,12 @@ test_testcase1: # Run testcase tests # Julia cd ../examples/julia && make build Script=testcase1 && make run Script=testcase1 -# Javascript - cd ../examples/javascript && make build Script=testcase1 && make run Script=testcase1 # Python and checks cd .. && python testing/test_testcase1.py # Stop testcase container cd .. && TESTCASE=testcase1 docker-compose down -# Remove testcase image and javascript geckodriver +# Remove julia image cd ../examples/julia && make remove-image Script=testcase1 - cd ../examples/javascript && make remove-image Script=testcase1 - cd ../examples/javascript && rm geckodriver # Report test results if [ $(SINGLE) = true ]; then\ python report.py;\ @@ -136,16 +132,12 @@ test_testcase2: # Run testcase tests # Julia cd ../examples/julia && make build Script=testcase2 && make run Script=testcase2 -# Javascript - cd ../examples/javascript && make build Script=testcase2 && make run Script=testcase2 # Python and checks cd .. && python testing/test_testcase2.py # Stop testcase container cd .. && TESTCASE=testcase2 docker-compose down -# Remove testcase image and javascript geckodriver +# Remove julia image cd ../examples/julia && make remove-image Script=testcase2 - cd ../examples/javascript && make remove-image Script=testcase2 - cd ../examples/javascript && rm geckodriver # Report test results if [ $(SINGLE) = true ]; then\ python report.py;\ diff --git a/testing/references/testcase1/kpis_javascript.csv b/testing/references/testcase1/kpis_javascript.csv deleted file mode 100644 index c2a64646f..000000000 --- a/testing/references/testcase1/kpis_javascript.csv +++ /dev/null @@ -1,10 +0,0 @@ -keys,value -cost_tot,0.1503182853952744 -emis_tot,0.4294808154150696 -ener_tot,2.147404077075348 -idis_tot,1016.9445000958008 -pdih_tot, -pele_tot, -pgas_tot,0.0961571035300277 -tdis_tot,10.632756858210827 -time_rat,0.000976141212439 diff --git a/testing/references/testcase1/results_javascript.csv b/testing/references/testcase1/results_javascript.csv deleted file mode 100644 index 651861bfc..000000000 --- a/testing/references/testcase1/results_javascript.csv +++ /dev/null @@ -1,5762 +0,0 @@ -time,TRooAir_y -0,293.15 -30,293.150038948095 -60,293.1501396045594 -90,293.15030344857644 -120,293.15053153089696 -150,293.15082407202294 -180,293.1511810156118 -210,293.1516022131288 -240,293.15208748545894 -270,293.1526366434646 -300,293.15324951407433 -330,293.15392591177505 -360,293.1546656290574 -390,293.15546846580787 -420,293.1563342241002 -450,293.15726270997595 -480,293.1582537307056 -510,293.1593070943863 -540,293.16042260933074 -570,293.1616000840556 -600,293.16283932725537 -630,293.16414014785204 -660,293.16550235499034 -690,293.1669257581034 -720,293.16841016688835 -750,293.16995539129925 -780,293.17156124154656 -810,293.1732275280975 -840,293.1749540616765 -870,293.17674065326423 -900,293.1785871140973 -930,293.1804932556674 -960,293.1824588897204 -990,293.1844838282559 -1020,293.18656788352627 -1050,293.1887108680361 -1080,293.1909125945413 -1110,293.1931728760486 -1140,293.1954915258148 -1170,293.19786835734607 -1200,293.2003031843971 -1230,293.2027958209707 -1260,293.205346081317 -1290,293.2079537799325 -1320,293.21061873156 -1350,293.2133407511872 -1380,293.2161196540465 -1410,293.21895525561433 -1440,293.22184737161024 -1470,293.2247958179965 -1500,293.2278004109772 -1530,293.23086096699774 -1560,293.2339773027442 -1590,293.2371492351427 -1620,293.24037658135853 -1650,293.2436591587958 -1680,293.2469967850968 -1710,293.25038927814103 -1740,293.2538364560449 -1770,293.2573381371612 -1800,293.26089414007794 -1830,293.26450428361824 -1860,293.2681683868396 -1890,293.2718862690332 -1920,293.2756577497232 -1950,293.2794826486664 -1980,293.2833607858514 -2010,293.28729198149824 -2040,293.29127605605754 -2070,293.29531283021004 -2100,293.299402124866 -2130,293.3035437611646 -2160,293.3077375604734 -2190,293.3119833443878 -2220,293.3162809347302 -2250,293.32063015354976 -2280,293.32503082312166 -2310,293.3294827659466 -2340,293.33398580475 -2370,293.3385397624819 -2400,293.343144462316 -2430,293.34779972764915 -2460,293.3525053821011 -2490,293.35726124951367 -2520,293.36206715395014 -2550,293.366922919695 -2580,293.3718283712532 -2610,293.37678333334964 -2640,293.3817876309287 -2670,293.3868410891537 -2700,293.3919435334063 -2730,293.39709478928603 -2760,293.4022946826097 -2790,293.4075430394112 -2820,293.4128396859403 -2850,293.418184448663 -2880,293.4235771542604 -2910,293.42901762962833 -2940,293.434505701877 -2970,293.44004119833033 -3000,293.4456239465256 -3030,293.4512537742126 -3060,293.456930509354 -3090,293.4626539801237 -3120,293.46842401490727 -3150,293.4742404423009 -3180,293.48010309111135 -3210,293.486011790355 -3240,293.491966369258 -3270,293.49796665725506 -3300,293.50401248398964 -3330,293.5101036793131 -3360,293.51624007328434 -3390,293.5224214961694 -3420,293.52864777844087 -3450,293.53491875077754 -3480,293.541234244064 -3510,293.54759408938986 -3540,293.5539981180499 -3570,293.56044616154315 -3600,293.5669380515725 -3630,293.57347362004435 -3660,293.5800526990683 -3690,293.58667512095656 -3720,293.59334071822343 -3750,293.60004932358515 -3780,293.6068007699592 -3810,293.61359489046407 -3840,293.6204315184188 -3870,293.6273104873424 -3900,293.63423163095365 -3930,293.6411947831707 -3960,293.6481997781105 -3990,293.65524645008844 -4020,293.66233463361795 -4050,293.6694641634102 -4080,293.6766348743737 -4110,293.68384660161365 -4140,293.69109918043193 -4170,293.69839244632635 -4200,293.70572623499044 -4230,293.71310038231314 -4260,293.7205147243783 -4290,293.7279690974644 -4320,293.73546333804387 -4350,293.7429972827833 -4380,293.7505707685424 -4410,293.75818363237414 -4440,293.76583571152406 -4470,293.7735268434302 -4500,293.7812568657224 -4530,293.7890256162223 -4560,293.7968329329427 -4590,293.8046786540873 -4620,293.8125626180503 -4650,293.8204846634163 -4680,293.8284446289597 -4710,293.8364423536442 -4740,293.844477676623 -4770,293.8525504372379 -4800,293.86066047501924 -4830,293.8688076296856 -4860,293.87699174114334 -4890,293.8852126494864 -4920,293.8934701949957 -4950,293.9017642181392 -4980,293.9100945595713 -5010,293.91846106013264 -5040,293.9268635608497 -5070,293.93530190293467 -5100,293.9437759277848 -5130,293.9522854769824 -5160,293.9608303922944 -5190,293.96941051567205 -5220,293.97802568925067 -5250,293.98667575534927 -5280,293.9953605564703 -5310,294.0040799352994 -5340,294.0128337347048 -5370,294.0216217977376 -5400,294.030443967631 -5430,294.0393000878001 -5460,294.04819000184176 -5490,294.05711355353424 -5520,294.0660705868369 -5550,294.07506094588985 -5580,294.08408447501387 -5610,294.09314101871 -5640,294.10223042165927 -5670,294.1113525287224 -5700,294.1205071849395 -5730,294.1296942355302 -5760,294.13891352589275 -5790,294.14816490160416 -5820,294.15744820842 -5850,294.16676329227374 -5880,294.17610999927706 -5910,294.18548817571894 -5940,294.19489766806606 -5970,294.2043383229621 -6000,294.21380998722765 -6030,294.22331250786004 -6060,294.23284573203284 -6090,294.24240950709594 -6120,294.2520036805752 -6150,294.26162810017195 -6180,294.2712826137632 -6210,294.2809670694012 -6240,294.2906813153129 -6270,294.3004251999005 -6300,294.3101985717403 -6330,294.32000127958304 -6360,294.3298331723537 -6390,294.339694099151 -6420,294.3495839092474 -6450,294.35950245208863 -6480,294.3694495772939 -6510,294.37942513465526 -6540,294.3894289741376 -6570,294.39946094587833 -6600,294.40952090018743 -6630,294.4196086875468 -6660,294.4297241586105 -6690,294.43986716420443 -6720,294.4500375553258 -6750,294.4602351831435 -6780,294.47045989899726 -6810,294.48071155439817 -6840,294.4909900010279 -6870,294.5012950907387 -6900,294.51162667555343 -6930,294.52198460766505 -6960,294.5323687394365 -6990,294.5427789234008 -7020,294.55321501226035 -7050,294.5636768588874 -7080,294.5741643163233 -7110,294.58467723777864 -7140,294.595215476633 -7170,294.6057788864347 -7200,294.6163673209008 -7230,294.6269806339168 -7260,294.63761867953644 -7290,294.6482813119817 -7320,294.6589683856425 -7350,294.6696797550766 -7380,294.6804152750094 -7410,294.69117480033384 -7440,294.7019581861101 -7470,294.71276528756573 -7500,294.7235959600952 -7530,294.7344500592598 -7560,294.74532744078783 -7590,294.756227960574 -7620,294.76715147467945 -7650,294.77809783933174 -7680,294.7890669109245 -7710,294.80005854601745 -7740,294.8110726013361 -7770,294.822108933772 -7800,294.8331674003819 -7830,294.8442478583883 -7860,294.85535016517906 -7890,294.8664741783072 -7920,294.8776197554907 -7950,294.88878675461274 -7980,294.8999750337213 -8010,294.911184451029 -8040,294.92241486491304 -8070,294.93366613391515 -8100,294.9449381167414 -8130,294.9562306722621 -8160,294.96754365951176 -8190,294.9788769376888 -8220,294.9902303661555 -8250,295.0016038044381 -8280,295.01299711222634 -8310,295.0244101493737 -8340,295.03584277589704 -8370,295.04729485197646 -8400,295.05876623795547 -8430,295.0702567943407 -8460,295.08176638180186 -8490,295.0932948611716 -8520,295.1048420934454 -8550,295.11640793978154 -8580,295.12799226150094 -8610,295.13959492008706 -8640,295.1512157771859 -8670,295.16285469460587 -8700,295.1745115343177 -8730,295.18618615845423 -8760,295.1978784293105 -8790,295.20958820934385 -8820,295.2213153611731 -8850,295.23305974757926 -8880,295.2448212315052 -8910,295.2565996760554 -8940,295.2683949444959 -8970,295.28020690025465 -9000,295.2920354069207 -9030,295.3038803282448 -9060,295.31574152813903 -9090,295.32761887067664 -9120,295.3395122200923 -9150,295.3514214407816 -9180,295.3633463973015 -9210,295.3752869543697 -9240,295.3872429768651 -9270,295.3992143298273 -9300,295.4112008784569 -9330,295.4232024881153 -9360,295.43521902432445 -9390,295.4472503527671 -9420,295.45929633928665 -9450,295.4713568498869 -9480,295.48343175073234 -9510,295.4955209081478 -9540,295.5076241886186 -9570,295.51974145879035 -9600,295.53187258546905 -9630,295.5440174356209 -9660,295.55617587637244 -9690,295.56834777501024 -9720,295.5805329989811 -9750,295.5927314158918 -9780,295.6049428935095 -9810,295.61716729976087 -9840,295.629404502733 -9870,295.6416543706728 -9900,295.65391677198704 -9930,295.6661915752424 -9960,295.67847864916536 -9990,295.69077786264234 -10020,295.7030890847194 -10050,295.71541218460254 -10080,295.7277470316573 -10110,295.7400934954091 -10140,295.7524514455428 -10170,295.76482075190324 -10200,295.7772012844946 -10230,295.7895929134809 -10260,295.8019955091856 -10290,295.8144089420918 -10320,295.8268330828422 -10350,295.83926780223896 -10380,295.8517129712437 -10410,295.8641684609778 -10440,295.87663414272185 -10470,295.88910988791616 -10500,295.9015955681603 -10530,295.9140910552135 -10560,295.92659622099427 -10590,295.9391109375807 -10620,295.9516350772103 -10650,295.9641685122799 -10680,295.9767111153459 -10710,295.9892627591241 -10740,296.00182331648955 -10770,296.01439266047703 -10800,296.0269706642805 -10830,296.0395572012534 -10860,296.0521521449086 -10890,296.0647553689184 -10920,296.0773667471146 -10950,296.0899861534883 -10980,296.1026134621902 -11010,296.1152485475303 -11040,296.12789128397816 -11070,296.1405415461627 -11100,296.1531992088725 -11130,296.1656763527872 -11160,296.17815860300846 -11190,296.1906475775777 -11220,296.20314373267826 -11250,296.2156471365377 -11280,296.2281577280456 -11310,296.240675403045 -11340,296.2532000431257 -11370,296.2657315252312 -11400,296.27826972486463 -11430,296.28333601364744 -11460,296.2884215085769 -11490,296.29353248442106 -11520,296.2986709087333 -11550,296.3038373106673 -11580,296.3090317396726 -11610,296.3142540853796 -11640,296.31950418433445 -11670,296.3247818556126 -11700,296.3300869127016 -11730,296.332332988022 -11760,296.3346031903607 -11790,296.3369054187637 -11820,296.3392421670768 -11850,296.34161412404995 -11880,296.3440213764254 -11910,296.3464638103689 -11940,296.34894124541347 -11970,296.3514534791518 -12000,296.354000302148 -12030,296.35516812265627 -12060,296.3563614996866 -12090,296.35758880315285 -12120,296.3588526785331 -12150,296.36015385958865 -12180,296.36149244251783 -12210,296.3628683110988 -12240,296.3642812785452 -12270,296.36573113483854 -12300,296.3672176625206 -12330,296.36796813775874 -12360,296.36874426626633 -12390,296.36955444856216 -12420,296.3704013387667 -12450,296.37128567194424 -12480,296.37220754315507 -12510,296.37316683423325 -12540,296.37416335618764 -12570,296.37519689671603 -12600,296.3762672360584 -12630,296.37685102977133 -12660,296.3774600601346 -12690,296.3781025887114 -12720,296.3787812232158 -12750,296.37949668321056 -12780,296.3802490585698 -12810,296.38103822938706 -12840,296.381864006084 -12870,296.3827261761596 -12900,296.38362451978816 -12930,296.3841366146023 -12960,296.38467332724923 -12990,296.3852427135769 -13020,296.3858473132408 -13050,296.38648782371484 -13080,296.3871643281256 -13110,296.38787670493883 -13140,296.38862476465897 -13170,296.3894082954402 -13200,296.3902270783049 -13230,296.3907033810994 -13260,296.3912035990161 -13290,296.3917355545126 -13320,296.39230171023127 -13350,296.3929027388559 -13380,296.39353871614884 -13410,296.39420951902747 -13440,296.3949149583892 -13470,296.39565482342977 -13500,296.39642889643096 -13530,296.39688289938573 -13560,296.397360075978 -13590,296.39786800250624 -13620,296.3984090604877 -13650,296.3989838965968 -13680,296.39959257897686 -13710,296.40023498306346 -13740,296.4009109203204 -13770,296.4016201811941 -13800,296.40236254944546 -13830,296.40279924268657 -13860,296.4032583466545 -13890,296.40374718445133 -13920,296.40426805422044 -13950,296.4048215759776 -13980,296.4054078101318 -14010,296.4060266306992 -14040,296.4066778498312 -14070,296.4073612593657 -14100,296.40807664469014 -14130,296.4084977960915 -14160,296.4089405806958 -14190,296.4094120636226 -14220,296.4099144581244 -14250,296.41044835713353 -14280,296.4110138132646 -14310,296.41161069917524 -14340,296.41223882780633 -14370,296.41289799250166 -14400,296.4135879803941 -14430,296.41399413928053 -14460,296.4144211420504 -14490,296.4148757919862 -14520,296.4153602162354 -14550,296.4158749803157 -14580,296.4164201290102 -14610,296.416995533679 -14640,296.417601008146 -14670,296.4182363473654 -14700,296.4189013403229 -14730,296.41929259791806 -14760,296.4197038995862 -14790,296.42014178334927 -14820,296.42060828917647 -14850,296.4211039548832 -14880,296.4216288173949 -14910,296.4221827468359 -14940,296.4227655580032 -14970,296.4233770475612 -15000,296.4240170064516 -15030,296.42439328451746 -15060,296.4247887970879 -15090,296.42520981374406 -15120,296.42565828628256 -15150,296.4261347245533 -15180,296.4266391576052 -15210,296.4271714543884 -15240,296.4277314307619 -15270,296.42831888519794 -15300,296.42893361069446 -15330,296.4292947711217 -15360,296.4296743472465 -15390,296.43007833720026 -15420,296.4305086036695 -15450,296.43096562829334 -15480,296.4314494322294 -15510,296.4319598833161 -15540,296.43249679856257 -15570,296.4330599783449 -15600,296.4336492178163 -15630,296.4339951042645 -15660,296.43435857880485 -15690,296.4347453652566 -15720,296.4351572363061 -15750,296.4355946451514 -15780,296.43605760504863 -15810,296.4365459827875 -15840,296.43705959661406 -15870,296.4375982489038 -15900,296.4381617370626 -15930,296.4384921908117 -15960,296.4388393966627 -15990,296.4392088013965 -16020,296.43960208685456 -16050,296.4400196775777 -16080,296.4404615789141 -16110,296.4409276566683 -16140,296.44141773040974 -16170,296.4419316046072 -16200,296.442469079016 -16230,296.4427839450294 -16260,296.4431147191746 -16290,296.4434665686027 -16320,296.443841083509 -16350,296.4442386595752 -16380,296.44465929423893 -16410,296.44510285238306 -16440,296.4455691549868 -16470,296.4460580087052 -16500,296.4465692157381 -16530,296.44686834500845 -16560,296.4471825308651 -16590,296.4475166583718 -16620,296.4478722253209 -16650,296.4482495983462 -16680,296.4486487669761 -16710,296.44906959523627 -16740,296.4495119056008 -16770,296.4499755070028 -16800,296.4504602041813 -16830,296.45074345466384 -16860,296.45104090301834 -16890,296.4513571498979 -16920,296.451693599979 -16950,296.45205059067325 -16980,296.4524281036047 -17010,296.4528260020066 -17040,296.4532441099321 -17070,296.45368223868394 -17100,296.4541401956326 -17130,296.4544074326396 -17160,296.4546880020444 -17190,296.454986217902 -17220,296.45530339110434 -17250,296.45563982968014 -17280,296.45599550735795 -17310,296.4563702866436 -17340,296.4567639932532 -17370,296.4571764409488 -17400,296.4576074398239 -17430,296.4578585362134 -17460,296.4581220931789 -17490,296.4584021361259 -17520,296.45869988153817 -17550,296.45901560791475 -17580,296.45934928110125 -17610,296.4597007629415 -17640,296.46006988089755 -17670,296.4604564512791 -17700,296.4608602869937 -17730,296.4610951232769 -17760,296.46134154238155 -17790,296.4616032791501 -17820,296.46188145507887 -17850,296.46217631900487 -17880,296.46248782890683 -17910,296.4628158460324 -17940,296.46316019967173 -17970,296.4635207087697 -18000,296.46389718913684 -18030,296.46411565355294 -18060,296.4643448175211 -18090,296.4645881235451 -18120,296.4648465976 -18150,296.46512045874243 -18180,296.4654096571044 -18210,296.4657140534033 -18240,296.46603347883865 -18270,296.4663677550767 -18300,296.4667167009183 -18330,296.4669186894945 -18360,296.46713048925886 -18390,296.4673552487402 -18420,296.467593897904 -18450,296.4678466259222 -18480,296.4681133751037 -18510,296.4683940057021 -18540,296.4686883509066 -18570,296.46899623518954 -18600,296.46931748042863 -18630,296.469502897032 -18660,296.4696972317881 -18690,296.4699033377541 -18720,296.4701220484434 -18750,296.4703535230533 -18780,296.4705976960969 -18810,296.4708544274306 -18840,296.4711235523125 -18870,296.4714048981049 -18900,296.47169828984687 -18930,296.4718670462312 -18960,296.4720438234864 -18990,296.47223117784193 -19020,296.4724298459625 -19050,296.4726399569948 -19080,296.4728614376876 -19110,296.47309414756654 -19140,296.4733379240372 -19170,296.47359259743376 -19200,296.47385799604024 -19230,296.4740100118886 -19260,296.4741691475064 -19290,296.474337661081 -19320,296.47451619207754 -19350,296.4747048395307 -19380,296.4749035224598 -19410,296.47511210012664 -19440,296.47533041216155 -19470,296.4755582919516 -19500,296.475795571107 -19530,296.4759307740697 -19560,296.4760721923101 -19590,296.4762217849002 -19620,296.47638009380137 -19650,296.4765471878893 -19680,296.4767229784922 -19710,296.47690732467504 -19740,296.47710006836934 -19770,296.47730104609417 -19800,296.47751009286657 -19830,296.47762841859617 -19860,296.47775205215146 -19890,296.47788265255895 -19920,296.47802066401823 -19950,296.4781661252131 -19980,296.4783189398228 -20010,296.4784789667828 -20040,296.47864605040087 -20070,296.47882003040587 -20100,296.4790007453 -20130,296.4791021374816 -20160,296.4792079275088 -20190,296.4793194735747 -20220,296.47943712190585 -20250,296.4795608809757 -20280,296.4796906468606 -20310,296.4798262784333 -20340,296.4799676224521 -20370,296.480114521932 -20400,296.4802668189372 -20430,296.48035122931515 -20460,296.48043912546376 -20490,296.48053156409804 -20520,296.4806287933067 -20550,296.48073079134883 -20580,296.4808374467472 -20610,296.4809486183792 -20640,296.4810641555265 -20670,296.481183904565 -20700,296.481307711196 -20730,296.4813750995972 -20760,296.481445060033 -20790,296.4815183472397 -20820,296.48159511104984 -20850,296.4816752995185 -20880,296.48175879366795 -20910,296.4818454524473 -20940,296.4819351277335 -20970,296.4820276693362 -21000,296.4821229266676 -21030,296.4821732610204 -21060,296.4822252524461 -21090,296.4822793533442 -21120,296.48233561522017 -21150,296.4823939559497 -21180,296.48245424911136 -21210,296.4825163537931 -21240,296.4825801245374 -21270,296.48264541465943 -21300,296.48271207735365 -21330,296.4827453337031 -21360,296.48277933137337 -21390,296.4828142202137 -21420,296.4828499533777 -21450,296.48288641860114 -21480,296.48292348207855 -21510,296.482961003104 -21540,296.4829988389548 -21570,296.48303684652143 -21600,296.4830748828505 -21630,296.48309104537 -21660,296.48310694600576 -21690,296.48312244319084 -21720,296.4831373957727 -21750,296.48315166302336 -21780,296.48316510463883 -21810,296.48317758073847 -21840,296.4831889518645 -21870,296.48319907898133 -21900,296.48320782347486 -21930,296.48320709470426 -21960,296.4832052747028 -21990,296.48320190801604 -22020,296.4831967511625 -22050,296.4831896317584 -22080,296.48318040142215 -22110,296.4831689200606 -22140,296.48315505062465 -22170,296.4831386573594 -22200,296.4831196052199 -22230,296.4831016449269 -22260,296.4830816781557 -22290,296.4830589472111 -22320,296.48303311049483 -22350,296.48300396569465 -22380,296.4829713572491 -22410,296.48293514547123 -22440,296.4828951962457 -22470,296.48285137759115 -22500,296.48280355851193 -22530,296.4827684562294 -22560,296.48273043301293 -22590,296.4826884292353 -22620,296.4826420053269 -22650,296.4825909291381 -22680,296.4825350380001 -22710,296.48247419269865 -22740,296.48240826211673 -22770,296.4823371181096 -22800,296.4822606337943 -22830,296.4822084369627 -22860,296.48215240606885 -22890,296.48209118003894 -22920,296.4820242215348 -22950,296.48195126867773 -22980,296.4818721517684 -23010,296.4817867321319 -23040,296.4816948817119 -23070,296.4815964762616 -23100,296.4814913930714 -23130,296.4814221381979 -23160,296.48134813793365 -23190,296.4812677304002 -23220,296.4811802807438 -23250,296.48108549748065 -23280,296.48098320396167 -23310,296.48087326211703 -23340,296.48075554701217 -23370,296.48062993835754 -23400,296.48049631767526 -23430,296.4804100421488 -23460,296.4803181121512 -23490,296.4802185657889 -23520,296.48011067099395 -23550,296.479994106816 -23580,296.4798686897399 -23610,296.4797342823668 -23640,296.4795907629434 -23670,296.4794380151947 -23700,296.479275924931 -23730,296.4791726714949 -23760,296.4790628571937 -23790,296.4789442210529 -23820,296.4788159341384 -23850,296.47867764618564 -23880,296.47852916690107 -23910,296.47837035962215 -23940,296.4782011058347 -23970,296.47802129333365 -24000,296.47783081227175 -24030,296.4777106307079 -24060,296.4775829850047 -24090,296.47744531618406 -24120,296.4772966988399 -24150,296.4771367535605 -24180,296.4769652833643 -24210,296.47678215238994 -24240,296.4765872454191 -24270,296.47638045436975 -24300,296.4761616737896 -24330,296.47602462154106 -24360,296.47587920542964 -24390,296.4757225696927 -24420,296.4755536928928 -24450,296.4753721666512 -24480,296.47517778739234 -24510,296.4749704201209 -24540,296.4747499529688 -24570,296.4745162820289 -24600,296.4742693062938 -24630,296.4741154486832 -24660,296.4739523314651 -24690,296.4737768034532 -24720,296.4735877476645 -24750,296.4733847269481 -24780,296.473167531231 -24810,296.47293602644805 -24840,296.472690104135 -24870,296.47242966460874 -24900,296.4721546113551 -24930,296.4719840216464 -24960,296.47180328099125 -24990,296.47160894428066 -25020,296.471399799518 -25050,296.4711753809881 -25080,296.4709354722204 -25110,296.47067994014384 -25140,296.47040867974954 -25170,296.4701215956261 -25200,296.4698185957983 -25230,296.4696313551974 -25260,296.469433077141 -25290,296.4692200242385 -25320,296.46899089005655 -25350,296.46874518053704 -25380,296.46848267291523 -25410,296.46820323517744 -25440,296.46790676582 -25470,296.4675931737485 -25500,296.4672623715707 -25530,296.46705856920033 -25560,296.46684284811715 -25590,296.4666111804293 -25620,296.4663621658882 -25650,296.46609528232835 -25680,296.4658103007966 -25710,296.4655070903995 -25740,296.46518555318704 -25770,296.46484560242527 -25800,296.4644871553461 -25830,296.4642668882082 -25860,296.46403382677164 -25890,296.4637836545614 -25920,296.4635148781804 -25950,296.463226947604 -25980,296.46291962779986 -26010,296.46259278905694 -26040,296.4622463370255 -26070,296.46188018937323 -26100,296.4614942679959 -26130,296.4612576409276 -26160,296.4610073500628 -26190,296.4607387923992 -26220,296.46045038210184 -26250,296.4601415415489 -26280,296.4598120297405 -26310,296.45946171820987 -26340,296.45909051625245 -26370,296.4586983459767 -26400,296.4582851339794 -26430,296.4580322596039 -26460,296.45776485843584 -26490,296.45747804313794 -26520,296.4571701361921 -26550,296.4568405326541 -26580,296.45648898567134 -26610,296.45611536808246 -26640,296.4557195928712 -26670,296.4553015866239 -26700,296.4548612806733 -26730,296.45459227934623 -26760,296.4543078951434 -26790,296.45400295871974 -26820,296.4536757016723 -26850,296.4533254920227 -26880,296.4529520771829 -26910,296.4525553313575 -26940,296.4521351712599 -26970,296.45169152798945 -27000,296.45122433764726 -27030,296.4509393373999 -27060,296.45063810551375 -27090,296.4503151930974 -27120,296.44996874170505 -27150,296.44959809262457 -27180,296.4492029876528 -27210,296.4487833024203 -27240,296.44833895740976 -27270,296.4478698882662 -27300,296.44737603588976 -27330,296.4470751723679 -27360,296.4467572361683 -27390,296.446416501448 -27420,296.4460510206027 -27450,296.4456601085001 -27480,296.44524350144496 -27510,296.44480107655266 -27540,296.44433275811326 -27570,296.44383848634794 -27600,296.44331820698403 -27630,296.44300162338345 -27660,296.4426671341907 -27690,296.4423087393376 -27720,296.4419244029882 -27750,296.4415134139164 -27780,296.44107550306006 -27810,296.44061054907814 -27840,296.4401184801039 -27870,296.4395992409633 -27900,296.4390527822366 -27930,296.43872062923504 -27960,296.43836974624776 -27990,296.43799386183827 -28020,296.43759085290804 -28050,296.4371599824753 -28080,296.43670097623965 -28110,296.43621371446096 -28140,296.43569812915 -28170,296.43515416976373 -28200,296.4345817917589 -28230,296.4342342274442 -28260,296.4338671176636 -28290,296.4334739225983 -28320,296.4330524328975 -28350,296.43260188617484 -28380,296.4321220030217 -28410,296.4316126653562 -28440,296.4310738090991 -28470,296.4305053883623 -28500,296.4299073635001 -28530,296.4295445532951 -28560,296.42916139144546 -28590,296.42875107286363 -28620,296.4283113029985 -28650,296.4278412944216 -28680,296.4273407627493 -28710,296.42680959161413 -28740,296.4262477208771 -28770,296.425655109327 -28800,296.4250317222349 -28830,296.4246538388186 -28860,296.42425480726405 -28890,296.4238275604551 -28920,296.4233697197321 -28950,296.42288047299945 -28980,296.4223595310338 -29010,296.4218067792376 -29040,296.42122216144065 -29070,296.4206056411283 -29100,296.4199571885045 -29130,296.4195644117298 -29160,296.41914970038766 -29190,296.41870572869783 -29220,296.41823003502424 -29250,296.4177217829907 -29280,296.41718067867185 -29310,296.4166066092944 -29340,296.4159995226837 -29370,296.41535938703925 -29400,296.4146861775121 -29430,296.4142786943204 -29460,296.4138485005706 -29490,296.4133880153062 -29520,296.4128946950863 -29550,296.4123676796523 -29580,296.41180667051634 -29610,296.41121155678337 -29640,296.4105822902993 -29670,296.40991884399244 -29700,296.4092211979731 -29730,296.40879920230526 -29760,296.40835373089675 -29790,296.4078769512238 -29820,296.40736623925125 -29850,296.4068207112473 -29880,296.4062400643043 -29910,296.4056241894577 -29940,296.40497304259685 -29970,296.4042866013921 -30000,296.4035648509222 -30030,296.40312854362605 -30060,296.4026680065789 -30090,296.4021751594186 -30120,296.40164729876454 -30150,296.40108351783243 -30180,296.4004835094386 -30210,296.39984716660126 -30240,296.3991744492742 -30270,296.39846533988015 -30300,296.39771982847367 -30330,296.3972694172089 -30360,296.39679403371383 -30390,296.3962853536346 -30420,296.39574059553195 -30450,296.3951588300008 -30480,296.3945397457276 -30510,296.3938832377642 -30540,296.39318927014784 -30570,296.3924578300622 -30600,296.3916889125421 -30630,296.3912246116808 -30660,296.39073460799443 -30690,296.39021033710026 -30720,296.3896489408243 -30750,296.3890494675828 -30780,296.3884116020808 -30810,296.38773524145347 -30840,296.3870203538387 -30870,296.38626693118715 -30900,296.3854749735164 -30930,296.3849970040416 -30960,296.384492613379 -30990,296.3839530011944 -31020,296.3833752339393 -31050,296.38275833830426 -31080,296.3821019951627 -31110,296.38140610378235 -31140,296.3806706364169 -31170,296.37989558978774 -31200,296.37908096889527 -31230,296.3785895582951 -31260,296.3780710207189 -31290,296.37751632407003 -31320,296.3769224608216 -31350,296.3762884364018 -31380,296.3756139280044 -31410,296.3748988370776 -31440,296.3741431400039 -31470,296.3733468382773 -31500,296.3725099418785 -31530,296.3720053240387 -31560,296.3714728863446 -31590,296.3709033692369 -31620,296.3702936926418 -31650,296.3696428411984 -31680,296.3689504885745 -31710,296.3682165384456 -31740,296.3674409713346 -31770,296.3666237935069 -31800,296.3657650199189 -31830,296.36524743501093 -31860,296.3647013506103 -31890,296.3641172841029 -31920,296.3634920843341 -31950,296.3628247156371 -31980,296.36211484830903 -32010,296.3613623882986 -32040,296.360567320278 -32070,296.3597296552816 -32100,296.35884941323405 -32130,296.3583191076009 -32160,296.35775963640026 -32190,296.35716129847714 -32220,296.3565208730957 -32250,296.3558373047763 -32280,296.3551102606024 -32310,296.3543396488405 -32340,296.35352545831967 -32370,296.3526677048376 -32400,296.351766413278 -32430,296.3512236393172 -32460,296.35065104759445 -32490,296.350038723032 -32520,296.3493833768457 -32550,296.3486839342454 -32580,296.3479400592592 -32610,296.3471516625152 -32640,296.3463187370046 -32670,296.3454413032809 -32700,296.34451939117525 -32730,296.3439644072186 -32760,296.3433789674964 -32790,296.3427529477279 -32820,296.34208299264594 -32850,296.3413680086614 -32880,296.34060765690697 -32910,296.339801850415 -32940,296.3389505863419 -32970,296.33805388998763 -33000,296.3371117961159 -33030,296.3365448663062 -33060,296.335946857222 -33090,296.3353074401988 -33120,296.33462319508345 -33150,296.3338930100083 -33180,296.3331165433719 -33210,296.33229371065204 -33240,296.33142451317207 -33270,296.3305089809659 -33300,296.32954715371375 -33330,296.32896854787947 -33360,296.3283582540531 -33390,296.32770574410307 -33420,296.32700753461785 -33450,296.3262624959805 -33480,296.325470284018 -33510,296.3246308166941 -33540,296.3237440994981 -33570,296.32281016718366 -33600,296.3218290643287 -33630,296.3212390578556 -33660,296.3206167697538 -33690,296.3199514774363 -33720,296.31923963589105 -33750,296.3184800982895 -33780,296.317672518051 -33810,296.3168168156638 -33840,296.31591300078105 -33870,296.3149611128596 -33900,296.31396120135355 -33930,296.3133600750533 -33960,296.31272608885155 -33990,296.3120483308095 -34020,296.3113231960021 -34050,296.3105495209351 -34080,296.3097269567849 -34110,296.30885542660246 -34140,296.30793494419976 -34170,296.30696555371827 -34200,296.3059473094649 -34230,296.30533534944163 -34260,296.30468996688285 -34290,296.3040000656924 -34320,296.30326198274787 -34350,296.3024745384427 -34380,296.3016373818767 -34410,296.3007504387001 -34440,296.2998137268773 -34470,296.2988272952131 -34500,296.2977912028413 -34530,296.29716870035526 -34560,296.29651222860656 -34590,296.2958105126231 -34620,296.2950598328288 -34650,296.29425899406624 -34680,296.29340764352554 -34710,296.2925057094916 -34740,296.29155321407256 -34770,296.29055021071355 -34800,296.2894967633472 -34830,296.28886401467634 -34860,296.2881967661827 -34890,296.2874835693852 -34920,296.2867206500238 -34950,296.2859067979597 -34980,296.2850416586411 -35010,296.2841251630216 -35040,296.2831573373426 -35070,296.28213823966405 -35100,296.281067938687 -35130,296.280425244986 -35160,296.27974753732144 -35190,296.27902319915273 -35220,296.2782484033327 -35250,296.27742192531656 -35280,296.27654340897936 -35310,296.2756127879764 -35340,296.27463009266995 -35370,296.27359538570715 -35400,296.27250874052464 -35430,296.2718564076813 -35460,296.2711685633979 -35490,296.27043342860367 -35520,296.2696471250857 -35550,296.2688084144761 -35580,296.2679169392465 -35610,296.2669726357853 -35640,296.2659755385612 -35670,296.2649257147785 -35700,296.26382324257463 -35730,296.2631615810644 -35760,296.2624639275388 -35790,296.2617183460034 -35820,296.26092090902546 -35850,296.2600703650033 -35880,296.25916635517507 -35910,296.2582088186928 -35940,296.25719779411514 -35970,296.2561333531718 -36000,296.2550155786637 -36030,296.2543449034022 -36060,296.2536377726796 -36090,296.2528820992594 -36120,296.2520739083581 -36150,296.2512119357362 -36180,296.2502958215691 -36210,296.2493255078014 -36240,296.2483010370631 -36270,296.24722248557526 -36300,296.246089940763 -36330,296.2454105709557 -36360,296.244694299592 -36390,296.2439288939466 -36420,296.24311033377705 -36450,296.2422373428076 -36480,296.2413095603223 -36510,296.24032693108575 -36540,296.2392895017793 -36570,296.23819735307904 -36600,296.2370505769925 -36630,296.2363628359829 -36660,296.2356377648844 -36690,296.2348629913053 -36720,296.2340344514578 -36750,296.2331508576372 -36780,296.23221184840787 -36810,296.23121737138075 -36840,296.2301674772664 -36870,296.2290622511573 -36900,296.2279017895998 -36930,296.2272060047157 -36960,296.226472478977 -36990,296.22568870621444 -37020,296.22485058102893 -37050,296.2239568048999 -37080,296.223007015844 -37110,296.2220011643435 -37140,296.22093930511386 -37170,296.21982152762365 -37200,296.2186479329119 -37230,296.2179444353096 -37260,296.2172028040491 -37290,296.2164104051365 -37320,296.21556309351524 -37350,296.2146595604668 -37380,296.2136994436325 -37410,296.2126826963895 -37440,296.211609377432 -37470,296.2104795805621 -37500,296.2092934112637 -37530,296.20858253577023 -37560,296.2078331519642 -37590,296.20703250404046 -37620,296.2061764092578 -37650,296.20526354932275 -37680,296.20429356167364 -37710,296.2032664026045 -37740,296.20218213476085 -37770,296.20104085623353 -37800,296.19984267690074 -37830,296.1991247618546 -37860,296.19836798216915 -37890,296.19755946629925 -37920,296.19669499580993 -37950,296.1957732434601 -37980,296.19479384665766 -38010,296.1937567646346 -38040,296.1926620639574 -38070,296.1915098469593 -38100,296.1903002278606 -38130,296.18957561495074 -38160,296.188811799572 -38190,296.1879958005657 -38220,296.18712336581086 -38250,296.1861931597504 -38280,296.1852048199345 -38310,296.1841583085524 -38340,296.18305369606 -38370,296.181891088984 -38400,296.18067060583246 -38430,296.17993963993564 -38460,296.17916915239834 -38490,296.1783460586269 -38520,296.1774660748381 -38550,296.1765278577947 -38580,296.1755310453615 -38610,296.17447560270296 -38640,296.173361604131 -38670,296.17218916031504 -38700,296.17095839399445 -38730,296.170221423011 -38760,296.1694446300254 -38790,296.1686148332369 -38820,296.1677277192388 -38850,296.16678193775294 -38880,296.16577712713115 -38910,296.16471325552976 -38940,296.16359040108125 -38970,296.16240867854503 -39000,296.1611682148336 -39030,296.160425589522 -39060,296.15964286079947 -39090,296.15880675593223 -39120,296.157912933943 -39150,296.1569600381554 -39180,296.1559477075804 -39210,296.15487591338126 -39240,296.153744737474 -39270,296.1525542986535 -39300,296.1513047279447 -39330,296.15055680175453 -39360,296.1497685098316 -39390,296.1489264948261 -39420,296.1480263902567 -39450,296.14706683369405 -39480,296.1460474649804 -39510,296.1449682582996 -39540,296.1438292993121 -39570,296.1426307107916 -39600,296.14137262781344 -39630,296.14010366234885 -39660,296.13879511848944 -39690,296.13743390094135 -39720,296.13601573037903 -39750,296.1345392730995 -39780,296.1330041781772 -39810,296.1314104225264 -39840,296.12975809237 -39870,296.12804731032367 -39900,296.12627821106594 -39930,296.1244509332209 -39960,296.1225656166497 -39990,296.1206224015475 -40020,296.11862142814226 -40050,296.1165628365947 -40080,296.1144467669652 -40110,296.11227335920285 -40140,296.1100427531429 -40170,296.1077550885053 -40200,296.1054105048951 -40230,296.10300914180266 -40260,296.10055113860443 -40290,296.098036634563 -40320,296.0954657688279 -40350,296.0928386804358 -40380,296.09015550831134 -40410,296.08741639126714 -40440,296.08462146800474 -40470,296.0817708771148 -40500,296.0788647570777 -40530,296.07590324626386 -40560,296.0728864829342 -40590,296.06981460524094 -40620,296.0666877512276 -40650,296.0635060588296 -40680,296.06026966587507 -40710,296.0569787100847 -40740,296.0536333290726 -40770,296.0502336603466 -40800,296.04677984130865 -40830,296.0432720092554 -40860,296.0397103013786 -40890,296.0360948547653 -40920,296.03242580639863 -40950,296.028703293158 -40980,296.0249274518196 -41010,296.02109841905667 -41040,296.0172163314403 -41070,296.0132813254394 -41100,296.0092935374214 -41130,296.00525310365254 -41160,296.0011601602982 -41190,295.9970148434236 -41220,295.99281728899393 -41250,295.9885676328747 -41280,295.9842660108325 -41310,295.97991255853503 -41340,295.9755074115516 -41370,295.9710507053535 -41400,295.9665425753146 -41430,295.96198315671137 -41460,295.9573725847236 -41490,295.9527109944345 -41520,295.9479985208312 -41550,295.9432352988053 -41580,295.93842146315285 -41610,295.933557148575 -41640,295.9286424896784 -41670,295.9236776209753 -41700,295.91866267688425 -41730,295.91359779173007 -41760,295.90848309974456 -41790,295.9033187350666 -41820,295.89810483174267 -41850,295.8928415237272 -41880,295.88752894488266 -41910,295.8821672289803 -41940,295.8767565097 -41970,295.87129692063115 -42000,295.86578859527265 -42030,295.8602316670332 -42060,295.8546262692318 -42090,295.84897253509814 -42120,295.8432705977726 -42150,295.83752059030684 -42180,295.8317226456642 -42210,295.82587689671965 -42240,295.8199834762605 -42270,295.81404251698643 -42300,295.80805415151 -42330,295.8020185123568 -42360,295.79593573196587 -42390,295.7898059426899 -42420,295.7836292767956 -42450,295.77740586646394 -42480,295.77113584379066 -42510,295.7648193407863 -42540,295.7584564893765 -42570,295.7520474214025 -42600,295.74559226862124 -42630,295.73909116270573 -42660,295.73254423524526 -42690,295.7259516177457 -42720,295.71931344163005 -42750,295.7126298382381 -42780,295.70590093882737 -42810,295.69912687457287 -42840,295.69230777656776 -42870,295.6854437758233 -42900,295.6785350032693 -42930,295.67158158975434 -42960,295.66458366604604 -42990,295.65754136283124 -43020,295.65045481071627 -43050,295.6433241402274 -43080,295.6361494818108 -43110,295.6289309658329 -43140,295.6216687225808 -43170,295.6143628822623 -43200,295.60701357500614 -43230,295.5996209308623 -43260,295.59218507980233 -43290,295.5847061517196 -43320,295.57718427642914 -43350,295.56961958366844 -43380,295.56201220309725 -43410,295.554362264298 -43440,295.54666989677594 -43470,295.53893522995946 -43500,295.5311583932002 -43530,295.52333951577333 -43560,295.5154787268778 -43590,295.50757615563646 -43620,295.4996319310963 -43650,295.49164618222864 -43680,295.4836190379295 -43710,295.4755506270196 -43740,295.4674410782446 -43770,295.45929052027543 -43800,295.4510990817083 -43830,295.4428668910651 -43860,295.4345940767933 -43890,295.4262807672666 -43920,295.4179270907846 -43950,295.4095331755733 -43980,295.4010991497854 -44010,295.39262514150005 -44040,295.3841112787235 -44070,295.37555768938887 -44100,295.3669645013567 -44130,295.3583318424148 -44160,295.3496598402787 -44190,295.3409486225917 -44220,295.332198316925 -44250,295.32340905077774 -44280,295.3145809515776 -44310,295.3057141466806 -44340,295.29680876337125 -44370,295.287864928863 -44400,295.278882770298 -44430,295.26986241474765 -44460,295.2608039892125 -44490,295.2517076206225 -44520,295.2425734358371 -44550,295.2334015616454 -44580,295.2241921247664 -44610,295.214945251849 -44640,295.2056610694722 -44670,295.1963397041454 -44700,295.18698128230807 -44730,295.17758593033057 -44760,295.16815377451366 -44790,295.15868494108906 -44820,295.1491795562192 -44850,295.13963774599785 -44880,295.13005963644974 -44910,295.1204453535309 -44940,295.11079502312907 -44970,295.10110877106314 -45000,295.091386723084 -45030,295.081629004874 -45060,295.07183574204777 -45090,295.06200706015176 -45120,295.0521430846646 -45150,295.042243940997 -45180,295.0323097544924 -45210,295.02234065042626 -45240,295.012336754007 -45270,295.00229819037537 -45300,294.9922250846052 -45330,294.982117561703 -45360,294.9719757466082 -45390,294.9617997641936 -45420,294.9515897392647 -45450,294.9413457965608 -45480,294.93106806075406 -45510,294.9207566564504 -45540,294.91041170818914 -45570,294.90003334044326 -45600,294.8896216776194 -45630,294.87917684405795 -45660,294.8686989640333 -45690,294.8581881617536 -45720,294.8476445613611 -45750,294.8370682869322 -45780,294.82645946247743 -45810,294.8158182119415 -45840,294.8051446592036 -45870,294.7944389280772 -45900,294.78370114231006 -45930,294.7729314255847 -45960,294.7621299015183 -45990,294.7512966936623 -46020,294.7404319255032 -46050,294.729535720462 -46080,294.7186082018948 -46110,294.7076494930924 -46140,294.69665971728057 -46170,294.68563899762006 -46200,294.6745874572067 -46230,294.6635052190714 -46260,294.6523924061802 -46290,294.64124914143423 -46320,294.63007554767006 -46350,294.61887174765934 -46380,294.6076378641091 -46410,294.59637401966177 -46440,294.58508033689503 -46470,294.5737569383222 -46500,294.56240394639195 -46530,294.55102148348846 -46560,294.53960967193143 -46590,294.5281686339762 -46620,294.51669849181354 -46650,294.50519936757007 -46680,294.49367138330786 -46710,294.48211466102475 -46740,294.4705293226543 -46770,294.4589154900657 -46800,294.447273285064 -46830,294.4356028293899 -46860,294.42390424471995 -46890,294.4121776526664 -46920,294.4004231747774 -46950,294.38864093253693 -46980,294.3768310473648 -47010,294.3649936406165 -47040,294.3531288335835 -47070,294.34123674749327 -47100,294.32931750350883 -47130,294.3173712227294 -47160,294.3053980261898 -47190,294.29339803486084 -47220,294.2813713696492 -47250,294.2693181513975 -47280,294.257238500884 -47310,294.2451325388231 -47340,294.2330003858649 -47370,294.2208421625954 -47400,294.2086579895364 -47430,294.1964479871456 -47460,294.1842122758165 -47490,294.1719509758783 -47520,294.1596642075962 -47550,294.1473520911711 -47580,294.1350147467396 -47610,294.122652294374 -47640,294.1102648540826 -47670,294.097852545809 -47700,294.08541548943293 -47730,294.07295380476944 -47760,294.0604676115693 -47790,294.047957029519 -47820,294.0354221782405 -47850,294.02286317729136 -47880,294.01028014616463 -47910,293.99767320428896 -47940,293.98504247102824 -47970,293.972388065682 -48000,293.95971010748514 -48030,293.9470087156077 -48060,293.9342840091554 -48090,293.92153610716895 -48120,293.9087651286244 -48150,293.89597119243285 -48180,293.8831544174409 -48210,293.8703149224299 -48240,293.8574528261164 -48270,293.84456824715204 -48300,293.8316613041234 -48330,293.8187321155518 -48360,293.8057807998937 -48390,293.79280747554014 -48420,293.77981226081715 -48450,293.7667952739853 -48480,293.75375663323985 -48510,293.74069645671074 -48540,293.7276148624624 -48570,293.7145119684937 -48600,293.701387892738 -48630,293.68824275306304 -48660,293.6750766672708 -48690,293.66188975309746 -48720,293.64868212821347 -48750,293.6354539102233 -48780,293.6222052166656 -48810,293.6089361650128 -48840,293.5956468726713 -48870,293.5823374569815 -48900,293.5690080352173 -48930,293.5556587245864 -48960,293.5422896422302 -48990,293.5289009052234 -49020,293.5154926305744 -49050,293.50206493522484 -49080,293.48861793604976 -49110,293.4751517498574 -49140,293.4616664933891 -49170,293.4481622833192 -49200,293.4346392362553 -49230,293.4210974687376 -49260,293.4075370972392 -49290,293.3939582381659 -49320,293.38036100785627 -49350,293.3667455225813 -49380,293.35311189854446 -49410,293.33946025188163 -49440,293.3257906986609 -49470,293.31210335488265 -49500,293.2983983364792 -49530,293.284675759315 -49560,293.2709357391864 -49590,293.25717839182136 -49620,293.24340383287984 -49650,293.22961217795324 -49680,293.21580354256446 -49710,293.2019780421678 -49740,293.18813579214896 -49770,293.1742769078247 -49800,293.16040150444303 -49830,293.1465091805915 -49860,293.13259835758663 -49890,293.1186731871261 -49920,293.1047325672492 -49950,293.09077620680665 -49980,293.0768040851452 -50010,293.06281627182017 -50040,293.0488128664404 -50070,293.03479397859587 -50100,293.0207597211603 -50130,293.01443383449134 -50160,293.00808245663103 -50190,293.0016972156165 -50220,292.99527543739384 -50250,292.9888163517399 -50280,292.9823198234931 -50310,292.975785929207 -50340,292.9692148158932 -50370,292.9626066538895 -50400,292.95596162113293 -50430,292.9531378753361 -50460,292.9502821145934 -50490,292.9473838144042 -50520,292.9444396030305 -50550,292.9414484986598 -50580,292.9384103166693 -50610,292.93532513818275 -50640,292.9321931327449 -50670,292.92901449915496 -50700,292.925789445725 -50730,292.9243000755622 -50760,292.92277651291835 -50790,292.9212075160015 -50820,292.91958948176364 -50850,292.9179213594567 -50880,292.9162029496748 -50910,292.91443433679973 -50940,292.91261569962813 -50970,292.9107472481837 -51000,292.9088292026344 -51030,292.90785175702786 -51060,292.9068396012537 -51090,292.9057813243421 -51120,292.90467327002585 -51150,292.9035143730803 -51180,292.9023044325376 -51210,292.9010435355151 -51240,292.89973186496604 -51270,292.8983696355332 -51300,292.8969570721454 -51330,292.8961796335612 -51360,292.8953676073676 -51390,292.89450962482096 -51420,292.8936020451088 -51450,292.8926438095138 -51480,292.8916347205833 -51510,292.8905748679451 -51540,292.88946443672114 -51570,292.8883036436022 -51600,292.88709271551875 -51630,292.8863971071718 -51660,292.8856672869343 -51690,292.884892011865 -51720,292.8840676837395 -51750,292.8831932586223 -51780,292.88226854456065 -51810,292.8812936335804 -51840,292.8802687121628 -51870,292.8791939980065 -51900,292.87806971892854 -51930,292.87741128430736 -51960,292.8767191196235 -51990,292.87598214275147 -52020,292.8751968094068 -52050,292.8743620938818 -52080,292.8734778105322 -52110,292.87254405371203 -52140,292.87156101089886 -52170,292.87052890034033 -52200,292.8694479502497 -52230,292.8688099302981 -52260,292.86813871225377 -52290,292.86742339133804 -52320,292.86666048255114 -52350,292.8658489800208 -52380,292.8649887047716 -52410,292.8640797534307 -52440,292.8631223142791 -52470,292.86211660587463 -52500,292.86106285657297 -52530,292.86043907609786 -52560,292.8597826582374 -52590,292.8590828850208 -52620,292.8583363337802 -52650,292.8575420193817 -52680,292.85669976970763 -52710,292.8558096836084 -52740,292.8548719500394 -52770,292.85388678771324 -52800,292.8528544249646 -52830,292.85224272217647 -52860,292.85159896315366 -52890,292.85091262345514 -52920,292.85018034490065 -52950,292.84940116372485 -52980,292.84857491478886 -53010,292.84770169911786 -53040,292.84678170623664 -53070,292.8458151548893 -53100,292.8448022732597 -53130,292.84420200624754 -53160,292.84357028127204 -53190,292.8428967730455 -53220,292.8421781896736 -53250,292.8414135892794 -53280,292.8406028137962 -53310,292.83974596637535 -53340,292.83884323701534 -53370,292.83789484437995 -53400,292.83690101638604 -53430,292.8363121167594 -53460,292.8356923731208 -53490,292.83503166448287 -53520,292.83432676687977 -53550,292.8335767607946 -53580,292.8327814953136 -53610,292.8319410756651 -53640,292.8310556922285 -53670,292.8301255634807 -53700,292.82915091695975 -53730,292.8285735306303 -53760,292.8279659291891 -53790,292.82731820085434 -53820,292.8266271911519 -53850,292.8258920033712 -53880,292.82511249382554 -53910,292.8242887697701 -53940,292.8234210218736 -53970,292.8225094683211 -54000,292.8215543361624 -54030,292.820988686941 -54060,292.82039346599123 -54090,292.8197589754874 -54120,292.8190821319593 -54150,292.8183620619329 -54180,292.8175986290177 -54210,292.8167919424445 -54240,292.8159421930807 -54270,292.8150495987147 -54300,292.8141143858001 -54330,292.8135607235529 -54360,292.8129781470747 -54390,292.8123571771235 -54420,292.81169480270466 -54450,292.81099017399777 -54480,292.8102431619738 -54510,292.8094538777871 -54540,292.8086225124127 -54570,292.8077492831389 -54600,292.80683441571466 -54630,292.8062929966106 -54660,292.80572333454984 -54690,292.80511617338976 -54720,292.8044685760462 -54750,292.80377971675705 -54780,292.8030494739164 -54810,292.8022779605492 -54840,292.80146536764715 -54870,292.80061191189503 -54900,292.7997178182297 -54930,292.7991888971674 -54960,292.7986324178711 -54990,292.7980393517041 -55020,292.7974068368911 -55050,292.7967340721218 -55080,292.79602094327095 -55110,292.7952675651806 -55140,292.7944741287681 -55170,292.7936408500116 -55200,292.79276795292867 -55230,292.7922517805878 -55260,292.7917087478545 -55290,292.79113005789543 -55320,292.79051292560627 -55350,292.78985657450977 -55380,292.7891608980161 -55410,292.78842601272964 -55440,292.7876521094024 -55470,292.78683940320286 -55500,292.7859881171231 -55530,292.7854849387717 -55560,292.7849556106551 -55590,292.7843915719295 -55620,292.7837901154875 -55650,292.7831504900544 -55680,292.7824725966264 -55710,292.7817565535146 -55740,292.78100255121507 -55770,292.78021080398446 -55800,292.77938153368285 -55830,292.77889158865355 -55860,292.7783762169332 -55890,292.7778270977415 -55920,292.7772416032562 -55950,292.7766190077629 -55980,292.77595921989086 -56010,292.7752623596017 -56040,292.7745286170449 -56070,292.7737582054632 -56100,292.772951345479 -56130,292.7724748669006 -56160,292.77197369680806 -56190,292.77143975844376 -56220,292.7708705045215 -56250,292.77026523523267 -56280,292.76962386688297 -56310,292.7689465210275 -56340,292.76823338737853 -56370,292.7674846780633 -56400,292.7667006123619 -56430,292.76623782699 -56460,292.7657510970331 -56490,292.7652325936002 -56520,292.7646798511534 -56550,292.7640921961227 -56580,292.76346955253035 -56610,292.7628120434669 -56640,292.7621198581173 -56670,292.7613932073924 -56700,292.76063230912524 -56730,292.7601834372116 -56760,292.7597113790393 -56790,292.7592085573092 -56820,292.7586725894051 -56850,292.75810282831634 -56880,292.75749920581785 -56910,292.75686184647714 -56940,292.75619093886155 -56970,292.7554866925652 -57000,292.7547493238708 -57030,292.75431457905023 -57060,292.7538574173336 -57090,292.75337051661904 -57120,292.7528515783462 -57150,292.7522999823718 -57180,292.75171566825577 -57210,292.75109876198314 -57240,292.7504494514142 -57270,292.74976794472656 -57300,292.7490544565493 -57330,292.74863404573506 -57360,292.74819199805705 -57390,292.74772125009537 -57420,292.74721958843924 -57450,292.7466864201079 -57480,292.74612169247507 -57510,292.74552553288345 -57540,292.7448981283967 -57570,292.74423968567686 -57600,292.74355041759736 -57630,292.7431445408811 -57660,292.7427178176322 -57690,292.74226344647343 -57720,292.74177930019744 -57750,292.741264813268 -57780,292.7407199408977 -57810,292.74014481172645 -57840,292.7395396119322 -57870,292.7389045465629 -57900,292.7382398266351 -57930,292.7378486771912 -57960,292.7374374814684 -57990,292.73699970336867 -58020,292.73653330290006 -58050,292.73603774224034 -58080,292.7355129844622 -58110,292.7349591594416 -58140,292.73437645238187 -58170,292.7337650666197 -58200,292.73312521121426 -58230,292.73274897520804 -58260,292.7323535027183 -58290,292.7319325260362 -58320,292.7314840933564 -58350,292.7310076948265 -58380,292.7305033013969 -58410,292.7299710441175 -58440,292.7294111071295 -58470,292.72882369196105 -58500,292.7282090056145 -58530,292.72784786211315 -58560,292.72746830108 -58590,292.7270643261776 -58620,292.7266340747163 -58650,292.72617706505605 -58680,292.725693276039 -58710,292.7251828398266 -58740,292.7246459394099 -58770,292.724082774413 -58800,292.72349354968264 -58830,292.7231476705703 -58860,292.72278420164423 -58890,292.7223974207919 -58920,292.7219855553256 -58950,292.72154815204703 -58980,292.7210851976999 -59010,292.7205968254945 -59040,292.7200832171848 -59070,292.7195445703956 -59100,292.7189810877207 -59130,292.7186506376164 -59160,292.7183034337891 -59190,292.7179340310736 -59220,292.71754074762805 -59250,292.7171231589115 -59280,292.7166812595756 -59310,292.716215183816 -59340,292.7157251120631 -59370,292.71521123984826 -59400,292.71467376741606 -59430,292.7143589035954 -59460,292.7140281301171 -59490,292.71367628135414 -59520,292.713301767111 -59550,292.71290419170606 -59580,292.7124835577016 -59610,292.7120400002148 -59640,292.7115736982663 -59670,292.7110848452013 -59700,292.7105736388197 -59730,292.71027451114014 -59760,292.7099603254412 -59790,292.7096261980919 -59820,292.70927063129966 -59850,292.7088932584308 -59880,292.70849408995684 -59910,292.7080732618521 -59940,292.70763095164267 -59970,292.70716735039514 -60000,292.7066826533707 -60030,292.7063994042001 -60060,292.70610195581594 -60090,292.70578570890683 -60120,292.7054492587962 -60150,292.7050922680725 -60180,292.7047147551117 -60210,292.70431685668063 -60240,292.703898748726 -60270,292.7034606199451 -60300,292.70300266296744 -60330,292.7027354271164 -60360,292.7024548576165 -60390,292.70215664166403 -60420,292.7018394683671 -60450,292.701503029697 -60480,292.7011473519252 -60510,292.7007725725458 -60540,292.7003788658428 -60570,292.6999664180542 -60600,292.69953541908615 -60630,292.6992843237438 -60660,292.6990207666641 -60690,292.69874072360307 -60720,292.6984429780772 -60750,292.6981272515873 -60780,292.6977935782879 -60810,292.69744209633507 -60840,292.6970729782668 -60870,292.6966864077733 -60900,292.6962825719471 -60930,292.69604773662064 -60960,292.6958013174001 -60990,292.69553958051586 -61020,292.6952614044719 -61050,292.69496654043104 -61080,292.69465503041454 -61110,292.6943270131748 -61140,292.6939826594215 -61170,292.69362215020993 -61200,292.6932456697296 -61230,292.69302720618714 -61260,292.692798042108 -61290,292.69255473597326 -61320,292.692296261808 -61350,292.6920224005555 -61380,292.69173320208387 -61410,292.6914288056755 -61440,292.6911093801311 -61470,292.6907751037843 -61500,292.6904261578343 -61530,292.6902241700518 -61560,292.6900123701838 -61590,292.6897876105991 -61620,292.6895489613323 -61650,292.6892962332114 -61680,292.68902948392747 -61710,292.68874885322697 -61740,292.6884545079207 -61770,292.6881466235363 -61800,292.687825378196 -61830,292.6876399623082 -61860,292.6874456274568 -61890,292.6872395213957 -61920,292.6870208106116 -61950,292.68678933590724 -61980,292.6865451627694 -62010,292.6862884313417 -62040,292.6860193063662 -62070,292.6857379604804 -62100,292.6854445686453 -62130,292.68527581289936 -62160,292.6850990355574 -62190,292.6849116811153 -62220,292.6847130129085 -62250,292.6845029017902 -62280,292.68428142101163 -62310,292.6840487110472 -62340,292.68380493449126 -62370,292.6835502610097 -62400,292.6832848623185 -62430,292.6831328470324 -62460,292.68297371133644 -62490,292.68280519768393 -62520,292.68262666660974 -62550,292.6824380190791 -62580,292.6822393360728 -62610,292.6820307583289 -62640,292.6818124462173 -62670,292.68158456635075 -62700,292.6813472871189 -62730,292.681212084643 -62760,292.681070666333 -62790,292.6809210736736 -62820,292.6807627647032 -62850,292.68059567054627 -62880,292.68041987987465 -62910,292.68023553362326 -62940,292.6800427898606 -62970,292.6798418120676 -63000,292.67963276522727 -63030,292.6795144399098 -63060,292.67939080629344 -63090,292.6792602058252 -63120,292.67912219430514 -63150,292.6789767330497 -63180,292.67882391837963 -63210,292.6786638913595 -63240,292.6784968076815 -63270,292.6783228276167 -63300,292.6781421126629 -63330,292.6780407208197 -63360,292.6779349307399 -63390,292.6778233846216 -63420,292.6777057362382 -63450,292.6775819771162 -63480,292.6774522111793 -63510,292.6773165795548 -63540,292.6771752354843 -63570,292.67702833595285 -63600,292.67687603889624 -63630,292.67679162878375 -63660,292.67670373259097 -63690,292.6766112939126 -63720,292.6765140646599 -63750,292.6764120665739 -63780,292.6763054111318 -63810,292.67619423945627 -63840,292.6760787022655 -63870,292.67595895318374 -63900,292.67583514650954 -63930,292.6757677583015 -63960,292.6756977978296 -63990,292.67562451058706 -64020,292.6755477467412 -64050,292.6754675582369 -64080,292.6753840640519 -64110,292.6752974052371 -64140,292.6752077299156 -64170,292.67511518827763 -64200,292.6750199309111 -64230,292.6749695966801 -64260,292.6749176052266 -64290,292.6748635043008 -64320,292.67480724239715 -64350,292.67474890164004 -64380,292.67468860845094 -64410,292.6746265037419 -64440,292.6745627329703 -64470,292.674497442821 -64500,292.67443078009967 -64530,292.6743975238015 -64560,292.6743635261115 -64590,292.67432863725145 -64620,292.67429290406784 -64650,292.6742564388249 -64680,292.67421937532805 -64710,292.67418185428323 -64740,292.6741440184131 -64770,292.6741060108272 -64800,292.67406797447893 -64830,292.674051811941 -64860,292.67403591128624 -64890,292.67402041407826 -64920,292.6740054614696 -64950,292.6739911941883 -64980,292.6739777525384 -65010,292.6739652764005 -65040,292.67395390523245 -65070,292.6739437780699 -65100,292.67393503352685 -65130,292.673935762223 -65160,292.6739375822335 -65190,292.6739409489294 -65220,292.6739461057919 -65250,292.6739532252051 -65280,292.6739624555503 -65310,292.6739739369208 -65340,292.6739878063657 -65370,292.67400419963985 -65400,292.6740232517883 -65430,292.6740412119309 -65460,292.67406117871093 -65490,292.6740839096645 -65520,292.6741097463896 -65550,292.6741388911986 -65580,292.67417149965297 -65610,292.67420771143964 -65640,292.67424766067387 -65670,292.6742914793372 -65700,292.6743392984252 -65730,292.6743744004873 -65760,292.6744124237174 -65790,292.67445442750864 -65820,292.67450085143054 -65850,292.6745519276328 -65880,292.6746078187843 -65910,292.6746686640992 -65940,292.6747345946944 -65970,292.6748057387149 -66000,292.6748822230435 -66030,292.6749344195872 -66060,292.67499045050107 -66090,292.67505167655094 -66120,292.675118635075 -66150,292.675191587952 -66180,292.6752707048811 -66210,292.6753561245373 -66240,292.67544797497703 -66270,292.675546380447 -66300,292.6756514636568 -66330,292.6757207181768 -66360,292.6757947184681 -66390,292.67587512602864 -66420,292.67596257571205 -66450,292.6760573590021 -66480,292.6761596525479 -66510,292.67626959441924 -66540,292.6763873095508 -66570,292.676512918232 -66600,292.6766465389408 -66630,292.6767328140492 -66660,292.6768247440812 -66690,292.67692429047776 -66720,292.67703218530687 -66750,292.6771487495189 -66780,292.67727416662905 -66810,292.677408574036 -66840,292.67755209349315 -66870,292.6777048412756 -66900,292.67786693157285 -66930,292.67797018452745 -66960,292.67807999887026 -66990,292.6781986350525 -67020,292.67832692200847 -67050,292.67846521000246 -67080,292.67861368932813 -67110,292.6787724966481 -67140,292.6789417504764 -67170,292.6791215630182 -67200,292.6793120441208 -67230,292.67943222514066 -67260,292.67955987089266 -67290,292.67969753976195 -67320,292.6798461571546 -67350,292.6800061024824 -67380,292.68017757272685 -67410,292.6803607037493 -67440,292.68055561076807 -67470,292.68076240186525 -67500,292.6809811824931 -67530,292.68111823413614 -67560,292.6812636503035 -67590,292.6814202860962 -67620,292.6815891629518 -67650,292.6817706892488 -67680,292.6819650685629 -67710,292.68217243588947 -67740,292.68239290309646 -67770,292.6826265740911 -67800,292.6828735498808 -67830,292.68302740682543 -67860,292.6831905241064 -67890,292.68336605218104 -67920,292.6835551080323 -67950,292.6837581288109 -67980,292.6839753245902 -68010,292.68420682943514 -68040,292.68445275181 -68070,292.6847131913978 -68100,292.6849882447128 -68130,292.68515883369594 -68160,292.6853395744208 -68190,292.685533911201 -68220,292.685743056033 -68250,292.6859674746321 -68280,292.68620738346874 -68310,292.686462915614 -68340,292.68673417607687 -68370,292.6870212602687 -68400,292.68732426016464 -68430,292.68751149998127 -68460,292.6877097781142 -68490,292.687922831093 -68520,292.68815196535115 -68550,292.68839767494654 -68580,292.688660182644 -68610,292.68893962045723 -68640,292.6892360898899 -68670,292.6895496820364 -68700,292.6898804842889 -68730,292.6900842858176 -68760,292.69030000698393 -68790,292.6905316747548 -68820,292.69078068937864 -68850,292.691047573021 -68880,292.69133255463504 -68910,292.69163576511414 -68940,292.69195730240835 -68970,292.69229725325164 -69000,292.6926557004121 -69030,292.6928759666517 -69060,292.693109028178 -69090,292.6933592004777 -69120,292.693627976948 -69150,292.69391590761336 -69180,292.69422322750626 -69210,292.6945500663376 -69240,292.69489651845726 -69270,292.69526266619744 -69300,292.69564858766245 -69330,292.6958852137769 -69360,292.6961355047379 -69390,292.69640406249744 -69420,292.69669247289045 -69450,292.69700131353875 -69480,292.6973308254423 -69510,292.6976811370677 -69540,292.69805233911967 -69570,292.69844450948966 -69600,292.6988577215809 -69630,292.6991105949481 -69660,292.6993779962187 -69690,292.69966481161885 -69720,292.6999727186667 -69750,292.7003023223063 -69780,292.7006538693904 -69810,292.70102748708035 -69840,292.7014232623924 -69870,292.7018412687401 -69900,292.70228157479085 -69930,292.7025505750561 -69960,292.7028349593676 -69990,292.7031398958997 -70020,292.7034671530552 -70050,292.70381736281263 -70080,292.70419077775995 -70110,292.7045875236925 -70140,292.7050076838969 -70170,292.7054513272739 -70200,292.7059185177223 -70230,292.70620351685534 -70260,292.70650474885633 -70290,292.7068276613872 -70320,292.70717411289377 -70350,292.7075447620881 -70380,292.70793986717337 -70410,292.7083595525191 -70440,292.70880389764244 -70470,292.70927296689854 -70500,292.7097668193872 -70530,292.7100676817436 -70560,292.710385618064 -70590,292.7107263529048 -70620,292.7110918338703 -70650,292.71148274609266 -70680,292.7118993532672 -70710,292.7123417782786 -70740,292.71281009683673 -70770,292.71330436872046 -70800,292.7138246482024 -70830,292.7141412305871 -70860,292.71447571990643 -70890,292.7148341148859 -70920,292.7152184513612 -70950,292.71562944055864 -70980,292.7160673515402 -71010,292.7165323056469 -71040,292.7170243747456 -71070,292.71754361401025 -71100,292.7180900728607 -71130,292.7184222245972 -71160,292.7187731077168 -71190,292.71914899225834 -71220,292.7195520013202 -71250,292.7199828718842 -71280,292.7204418782508 -71310,292.72092914016 -71340,292.7214447256011 -71370,292.7219886851171 -71400,292.72256106325125 -71430,292.7229086262528 -71460,292.7232757361714 -71490,292.72366893137445 -71520,292.72409042121245 -71550,292.72454096807195 -71580,292.72502085136153 -71610,292.725530189163 -71640,292.7260690455558 -71670,292.7266374664278 -71700,292.7272354914248 -71730,292.7275983002696 -71760,292.7279814622628 -71790,292.7283917809877 -71820,292.7288315509956 -71850,292.7293015597148 -71880,292.72980209152905 -71910,292.73033326280563 -71940,292.7308951336837 -71970,292.73148774537435 -72000,292.73211113260663 -72030,292.7324890146169 -72060,292.73288804632034 -72090,292.73331529327777 -72120,292.73377313414886 -72150,292.7342623810291 -72180,292.7347833231419 -72210,292.7353360750849 -72240,292.7359206930282 -72270,292.73653721348643 -72300,292.7371856662556 -72330,292.7375784415794 -72360,292.7379931530757 -72390,292.7384371249193 -72420,292.7389128187462 -72450,292.7394210709325 -72480,292.7399621754038 -72510,292.7405362449332 -72540,292.7411433316953 -72570,292.7417834674908 -72600,292.7424566771685 -72630,292.74286415886564 -72660,292.7432943527747 -72690,292.743754838198 -72720,292.7442481585762 -72750,292.74477517416824 -72780,292.74533618346163 -72810,292.7459312973516 -72840,292.74656056399215 -72870,292.7472240104551 -72900,292.74792165663 -72930,292.74834365076066 -72960,292.74878912233345 -72990,292.74926590217024 -73020,292.74977661430614 -73050,292.7503221424729 -73080,292.7509027895784 -73110,292.7515186645869 -73140,292.7521698116092 -73170,292.75285625297494 -73200,292.7535780036053 -73230,292.75401430932266 -73260,292.7544748465389 -73290,292.754967693868 -73320,292.75549555469024 -73350,292.7560593357901 -73380,292.75665934435114 -73410,292.7572956873552 -73440,292.75796840484844 -73470,292.75867751440825 -73500,292.75942302598 -73530,292.7598734356257 -73560,292.7603488192947 -73590,292.7608574995474 -73620,292.76140225782297 -73650,292.76198402352657 -73680,292.7626031079717 -73710,292.7632596161065 -73740,292.76395358389385 -73770,292.7646850241499 -73800,292.7654539418399 -73830,292.765918241043 -73860,292.76640824490795 -73890,292.7669325159802 -73920,292.7674939124337 -73950,292.7680933858522 -73980,292.7687312515307 -74010,292.769407612334 -74040,292.7701225001242 -74070,292.77087592295067 -74100,292.7716678807958 -74130,292.77214584857444 -74160,292.77265023942005 -74190,292.77318985178715 -74220,292.77376761922426 -74250,292.7743845150408 -74280,292.7750408583633 -74310,292.7757367499241 -74340,292.7764722174694 -74370,292.7772472642779 -74400,292.77806188534913 -74430,292.7785532942161 -74460,292.77907183197976 -74490,292.7796265288156 -74520,292.7802203922504 -74550,292.780854416856 -74580,292.78152892543875 -74610,292.7822440165503 -74640,292.7829997138081 -74670,292.78379601571834 -74700,292.78463291230025 -74730,292.78513752837114 -74760,292.78566996625693 -74790,292.7862394835558 -74820,292.7868491603415 -74850,292.7875000119749 -74880,292.78819236478824 -74910,292.78892631510604 -74940,292.7897018824054 -74970,292.7905190604208 -75000,292.79137783419606 -75030,292.7918954173005 -75060,292.7924415018969 -75090,292.79302556859955 -75120,292.79365076856305 -75150,292.7943181374542 -75180,292.7950280049758 -75210,292.79578046517923 -75240,292.7965755333922 -75270,292.7974131985804 -75300,292.7982934408191 -75330,292.7988237446152 -75360,292.79938321601566 -75390,292.799981554138 -75420,292.800621979718 -75450,292.80130554823546 -75480,292.8020325926069 -75510,292.8028032045657 -75540,292.8036173952828 -75570,292.80447514896065 -75600,292.8053764407153 -75630,292.8059192128068 -75660,292.8064918047332 -75690,292.80710412949867 -75720,292.80775947588745 -75750,292.80845891868967 -75780,292.80920279387715 -75810,292.80999119082185 -75840,292.81082411653256 -75870,292.81170155045567 -75900,292.81262346276026 -75930,292.8131784448166 -75960,292.8137638847461 -75990,292.81438990472145 -76020,292.8150598600096 -76050,292.81577484419967 -76080,292.81653519615907 -76110,292.8173410028554 -76140,292.8181922671322 -76170,292.81908896368964 -76200,292.8200310577639 -76230,292.8205979856433 -76260,292.8211959949385 -76290,292.82183541217205 -76320,292.82251965749714 -76350,292.8232498427814 -76380,292.8240263096264 -76410,292.82484914255417 -76440,292.82571834024145 -76470,292.8266338726543 -76500,292.8275957001125 -76530,292.8281743039876 -76560,292.82878459802834 -76590,292.8294371081922 -76620,292.8301353178906 -76650,292.8308803567405 -76680,292.83167256891494 -76710,292.83251203645017 -76740,292.83339875385684 -76770,292.8343326863813 -76800,292.83531378944565 -76830,292.835903793932 -76860,292.8365260822515 -76890,292.83719137478624 -76920,292.837903216548 -76950,292.8386627543654 -76980,292.8394703348192 -77010,292.84032603742094 -77040,292.84122985251764 -77070,292.84218174065245 -77100,292.8431816523712 -77130,292.8437827766582 -77160,292.8444167630809 -77190,292.84509452134336 -77220,292.8458196563704 -77250,292.8465933316565 -77280,292.8474158960251 -77310,292.8482874264253 -77340,292.8492079090451 -77370,292.85017729974305 -77400,292.85119554421226 -77430,292.8518075021972 -77460,292.85245288498 -77490,292.8531427863939 -77520,292.85388086956124 -77550,292.85466831408854 -77580,292.8555054708759 -77610,292.8563924142733 -77640,292.85732912631624 -77670,292.8583155582 -77700,292.85935165079053 -77730,292.85997415121403 -77760,292.86063062318965 -77790,292.8613323393994 -77820,292.8620830194194 -77850,292.862883858407 -77880,292.863735209172 -77910,292.86463714342955 -77940,292.8655896390716 -77970,292.8665926426529 -78000,292.8676460902409 -78030,292.8682788368263 -78060,292.8689460855497 -78090,292.8696592825764 -78120,292.87042220216614 -78150,292.871236054458 -78180,292.87210119400373 -78210,292.8730176898497 -78240,292.87398551575444 -78270,292.87500461365806 -78300,292.87607491485954 -78330,292.8767176064532 -78360,292.8773953143502 -78390,292.87811965275074 -78420,292.8788944488019 -78450,292.8797209270485 -78480,292.88059944361544 -78510,292.8815300648475 -78540,292.8825127603823 -78570,292.88354746757284 -78600,292.8846341129824 -78630,292.88528644369785 -78660,292.8859742882162 -78690,292.8867094232447 -78720,292.8874957269963 -78750,292.88833443783886 -78780,292.8892259133008 -78810,292.8901702169936 -78840,292.89116731444864 -78870,292.89221713846155 -78900,292.8933196108949 -78930,292.89398127025777 -78960,292.89467892402075 -78990,292.8954245057929 -79020,292.89622194300694 -79050,292.8970724872645 -79080,292.8979764973273 -79110,292.8989340340435 -79140,292.8999450588545 -79170,292.9010095000304 -79200,292.90212727477035 -79230,292.90279794786625 -79260,292.90350507882846 -79290,292.9042607524877 -79320,292.9050689436273 -79350,292.9059309164869 -79380,292.9068470308909 -79410,292.90781734489485 -79440,292.9088418158687 -79470,292.9099203675913 -79500,292.91105291263773 -79530,292.9117322802624 -79560,292.9124485518679 -79590,292.9132139577545 -79620,292.9140325181645 -79650,292.91490550937374 -79680,292.91583329209806 -79710,292.91681592157295 -79740,292.917853351117 -79770,292.9189455000542 -79800,292.9200922763769 -79830,292.9207800151879 -79860,292.9215050865302 -79890,292.9222798603525 -79920,292.92310840044246 -79950,292.92399199450483 -79980,292.9249310039752 -80010,292.92592548124264 -80040,292.9269753755966 -80070,292.9280806019446 -80100,292.9292410637403 -80130,292.9299368464109 -80160,292.9306703723954 -80190,292.931454145403 -80220,292.9322922708329 -80250,292.93318604720554 -80280,292.93413583650425 -80310,292.935141688247 -80340,292.9362035477181 -80370,292.93732132544903 -80400,292.9384949204008 -80430,292.93919841577605 -80460,292.93994004728404 -80490,292.94073244644346 -80520,292.94157975831087 -80550,292.9424832916046 -80580,292.94344340868355 -80610,292.9444601561705 -80640,292.94553347537123 -80670,292.9466632724835 -80700,292.94784944202365 -80730,292.9485603152776 -80760,292.9493096993327 -80790,292.9501103475049 -80820,292.9509664425353 -80850,292.9518793027173 -80880,292.9528492906127 -80910,292.9538764499273 -80940,292.95496071801574 -80970,292.95610199678714 -81000,292.9573001763633 -81030,292.95801808915854 -81060,292.9587748690945 -81090,292.9595833852144 -81120,292.9604478559529 -81150,292.96136960855125 -81180,292.9623490056014 -81210,292.96338608787147 -81240,292.9644807887949 -81270,292.9656330060385 -81300,292.96684262538207 -81330,292.9675672360309 -81360,292.9683310516616 -81390,292.9691470509192 -81420,292.97001948592464 -81450,292.97094969223497 -81480,292.97193803230005 -81510,292.9729845439306 -81540,292.9740891566706 -81570,292.97525176399347 -81600,292.97647224739114 -81630,292.9772032110178 -81660,292.97797369880834 -81690,292.9787967928323 -81720,292.9796767768729 -81750,292.9806149941674 -81780,292.98161180685094 -81810,292.98266724975906 -81840,292.9837812485798 -81870,292.98495369264384 -81900,292.98618445921176 -81930,292.9869214279172 -81960,292.98769822115713 -81990,292.98852801819925 -82020,292.98941513245023 -82050,292.9903609141883 -82080,292.99136572506154 -82110,292.9924295969136 -82140,292.993552451612 -82170,292.99473417439737 -82200,292.9959746383572 -82230,292.99671726138405 -82260,292.99749999036186 -82290,292.9983360954838 -82320,292.9992299177269 -82350,293.00018281376765 -82380,293.0011951445951 -82410,293.00226693904585 -82440,293.00339811520394 -82470,293.00458855427456 -82500,293.00583812523274 -82530,293.0065860491324 -82560,293.0073743413116 -82590,293.00821635657246 -82620,293.0091164613967 -82650,293.0100760182133 -82680,293.01109538718026 -82710,293.0121745941136 -82740,293.0133135533528 -82770,293.01451214212426 -82800,293.01577022535264 -82830,293.01652309415385 -82860,293.01731657434993 -82890,293.01816409899624 -82920,293.01907005800047 -82950,293.0200358188958 -82980,293.0210617408379 -83010,293.02214784660964 -83040,293.02329404684707 -83070,293.024500214856 -83100,293.0257662115752 -83130,293.0265236669529 -83160,293.0273219575124 -83190,293.0281745881682 -83220,293.02908597016506 -83250,293.03005747548934 -83280,293.0310894621233 -83310,293.032181949806 -83340,293.03333484551246 -83370,293.0345480186882 -83400,293.0358213263523 -83430,293.0365830077989 -83460,293.03738572877864 -83490,293.03824305963803 -83520,293.039159430859 -83550,293.04013621822827 -83580,293.04117377838435 -83610,293.0422721280131 -83640,293.0434311704727 -83670,293.0446507714105 -83700,293.04593078399404 -83730,293.0466963289901 -83760,293.0475030983385 -83790,293.0483647213584 -83820,293.04928564566046 -83850,293.05026725017683 -83880,293.0513098900326 -83910,293.05241357885245 -83940,293.05357821642366 -83970,293.05480366465963 -84000,293.05608977294594 -84030,293.0568588171336 -84060,293.05766925087204 -84090,293.05853475596655 -84120,293.05945979503963 -84150,293.0604457495125 -84180,293.061492972828 -84210,293.0626014755428 -84240,293.06377115392127 -84270,293.0650018662084 -84300,293.0662934580796 -84330,293.0670656354355 -84360,293.0678793478414 -84390,293.06874832307705 -84420,293.06967703665265 -84450,293.0706668718212 -84480,293.0717181801746 -84510,293.0728309691972 -84540,293.07400513167937 -84570,293.07524052226523 -84600,293.0765369829936 -84630,293.07731192600284 -84660,293.0781285297933 -84690,293.07900056158485 -84720,293.07993250764554 -84750,293.0809257524018 -84780,293.08198064542745 -84810,293.0830971911305 -84840,293.08427527887864 -84870,293.0855147597843 -84900,293.0868154723248 -84930,293.0875928121565 -84960,293.0884119186724 -84990,293.08928659198 -85020,293.09022132697004 -85050,293.0912175085833 -85080,293.09227548420927 -85110,293.0933952551775 -85140,293.09457670748566 -85170,293.0958196887853 -85200,293.0971240340691 -85230,293.09790340075176 -85260,293.0987246201426 -85290,293.09960151866915 -85320,293.1005385977053 -85350,293.101537242047 -85380,293.10259779673413 -85410,293.1037202600172 -85440,293.1049045145781 -85470,293.10615040468 -85500,293.1074577619094 -85530,293.1082387845066 -85560,293.10906172591655 -85590,293.1099404323058 -85620,293.1108794093892 -85650,293.1118800411588 -85680,293.11294267014046 -85710,293.1140672915067 -85740,293.1152537846792 -85770,293.1165019906071 -85800,293.11781173755094 -85830,293.1185940443382 -85860,293.1194183160916 -85890,293.120298412127 -85920,293.1212388403553 -85950,293.1222409833063 -85980,293.1233051808288 -86010,293.1244314250192 -86040,293.125619592097 -86070,293.1268695197724 -86100,293.128181033062 -86130,293.1289642517036 -86160,293.12978946149184 -86190,293.13067052829524 -86220,293.13161196007565 -86250,293.1326151372423 -86280,293.13368039680506 -86310,293.1348077277886 -86340,293.1359970032684 -86370,293.1372480577935 -86400,293.13856071321965 -86430,293.139344470946 -86460,293.1401702260139 -86490,293.1410518442452 -86520,293.14199383150714 -86550,293.14299756543136 -86580,293.1440633800287 -86610,293.14519126125674 -86640,293.14638107910787 -86670,293.14763266504855 -86700,293.1489458378583 -86730,293.1497297616433 -86760,293.1505556689761 -86790,293.15143741903296 -86820,293.1523795134416 -86850,293.1533833264004 -86880,293.15444918876216 -86910,293.1555770834244 -86940,293.15676687735794 -86970,293.158018399027 -87000,293.1593314642212 -87030,293.16067339459363 -87060,293.1620561601186 -87090,293.16349323871776 -87120,293.1649890060303 -87150,293.16654479557604 -87180,293.1681609259906 -87210,293.1698373774469 -87240,293.171574017355 -87270,293.17337067567 -87300,293.1752271700196 -87330,293.1771433140876 -87360,293.179118920411 -87390,293.18115380131263 -87420,293.183247769212 -87450,293.1854006367284 -87480,293.187612216715 -87510,293.1898823222696 -87540,293.1922107667379 -87570,293.194597363714 -87600,293.19704192704023 -87630,293.19954427080654 -87660,293.2021042093499 -87690,293.20472155725355 -87720,293.2073961293465 -87750,293.21012774070266 -87780,293.2129162066404 -87810,293.21576134272146 -87840,293.218662964751 -87870,293.2216208887763 -87900,293.2246349310862 -87930,293.22770490821085 -87960,293.2308306369206 -87990,293.2340119342255 -88020,293.23724861737486 -88050,293.2405405038564 -88080,293.2438874113955 -88110,293.247289157955 -88140,293.2507455617341 -88170,293.254256441168 -88200,293.25782161492714 -88230,293.26144090191684 -88260,293.2651141212763 -88290,293.26884109237835 -88320,293.2726216348286 -88350,293.2764555684649 -88380,293.2803427133568 -88410,293.2842828898048 -88440,293.28827591834005 -88470,293.29232161972345 -88500,293.2964198149451 -88530,293.300570325224 -88560,293.3047729720071 -88590,293.3090275769689 -88620,293.3133339620109 -88650,293.31769194926096 -88680,293.3221013610727 -88710,293.3265620200251 -88740,293.3310737489217 -88770,293.33563637079027 -88800,293.340249708882 -88830,293.3449135866713 -88860,293.3496278278548 -88890,293.3543922563512 -88920,293.3592066963006 -88950,293.36407097206376 -88980,293.3689849082219 -89010,293.37394832957585 -89040,293.37896106114573 -89070,293.38402292817034 -89100,293.3891337561066 -89130,293.3942933706292 -89160,293.39950159762986 -89190,293.4047582632168 -89220,293.4100631937145 -89250,293.4154162156629 -89280,293.42081715581713 -89310,293.4262658411467 -89340,293.4317620988353 -89370,293.4373057562803 -89400,293.44289664109186 -89430,293.44853458109293 -89460,293.4542194043184 -89490,293.45995093901485 -89520,293.46572901364 -89550,293.4715534568619 -89580,293.4774240975592 -89610,293.48334076482 -89640,293.4893032879414 -89670,293.4953114964297 -89700,293.50136521999895 -89730,293.5074642885713 -89760,293.51360853227624 -89790,293.51979778144994 -89820,293.52603186663515 -89850,293.53231061858054 -89880,293.53863386824025 -89910,293.5450014467736 -89940,293.5514131855444 -89970,293.5578689161207 -90000,293.5643684702743 -90030,293.57091167998027 -90060,293.5774983774166 -90090,293.58412839496367 -90120,293.59080156520383 -90150,293.59751772092113 -90180,293.6042766951007 -90210,293.6110783209284 -90240,293.6179224317903 -90270,293.6248088612727 -90300,293.6317374431611 -90330,293.63870801144026 -90360,293.6457204002935 -90390,293.6527744441024 -90420,293.65986997744653 -90450,293.6670068351028 -90480,293.6741848520453 -90510,293.6814038634447 -90540,293.688663704668 -90570,293.6959642112781 -90600,293.70330521903355 -90630,293.71068656388775 -90660,293.71810808198904 -90690,293.7255696096802 -90720,293.7330709834977 -90750,293.740612040172 -90780,293.74819261662645 -90810,293.75581254997763 -90840,293.7634716775344 -90870,293.7711698367978 -90900,293.7789068654608 -90930,293.7866826014076 -90960,293.7944968827136 -90990,293.8023495476448 -91020,293.8102404346578 -91050,293.8181693823991 -91080,293.8261362297048 -91110,293.8341408156004 -91140,293.8421829793004 -91170,293.8502625602079 -91200,293.85837939791446 -91230,293.8665333321994 -91260,293.87472420302987 -91290,293.8829518505603 -91320,293.891216115132 -91350,293.8995168372731 -91380,293.907853857698 -91410,293.9162270173072 -91440,293.92463615718674 -91470,293.9330811186083 -91500,293.94156174302844 -91530,293.95007787208857 -91560,293.95862934761453 -91590,293.9672160116164 -91620,293.9758377062879 -91650,293.98449427400664 -91680,293.9931855573332 -91710,294.0019113990112 -91740,294.0106716419669 -91770,294.01946612930914 -91800,294.0282947043285 -91830,294.03715721049764 -91860,294.0460534914705 -91890,294.0549833910823 -91920,294.06394675334934 -91950,294.0729434224684 -91980,294.08197324281684 -92010,294.09103605895194 -92040,294.1001317156109 -92070,294.10926005771057 -92100,294.11842093034693 -92130,294.1276141787951 -92160,294.136839648509 -92190,294.146097185121 -92220,294.1553866344417 -92250,294.16470784245973 -92280,294.1740606553415 -92310,294.1834449194309 -92340,294.1928604812489 -92370,294.20230718749366 -92400,294.21178488504 -92430,294.2212934209392 -92460,294.2308326424188 -92490,294.2404023968823 -92520,294.2500025319092 -92550,294.2596328952542 -92580,294.2692933348476 -92610,294.2789836987946 -92640,294.2887038353753 -92670,294.2984535930444 -92700,294.308232820431 -92730,294.3180413663382 -92760,294.3278790797433 -92790,294.3377458097972 -92820,294.3476414058243 -92850,294.3575657173222 -92880,294.3675185939617 -92910,294.3774998855864 -92940,294.38750944221255 -92970,294.39754711402884 -93000,294.40761275139613 -93030,294.4177062048475 -93060,294.4278273250876 -93090,294.4379759629929 -93120,294.4481519696112 -93150,294.45835519616145 -93180,294.46858549403385 -93210,294.47884271478927 -93240,294.48912671015927 -93270,294.4994373320459 -93300,294.5097744325214 -93330,294.52013786382827 -93360,294.5305274783788 -93390,294.5409431287548 -93420,294.551384667708 -93450,294.5618519481593 -93480,294.5723448231988 -93510,294.58286314608546 -93540,294.5934067702474 -93570,294.6039755492811 -93600,294.6145693369518 -93630,294.6251879871928 -93660,294.63583135410585 -93690,294.6464992919605 -93720,294.6571916551942 -93750,294.66790829841204 -93780,294.6786490763868 -93810,294.6894138440584 -93840,294.70020245653404 -93870,294.711014769088 -93900,294.72185063716154 -93930,294.7327099163626 -93960,294.74359246246564 -93990,294.7544981314117 -94020,294.76542677930814 -94050,294.77637826242847 -94080,294.7873524372121 -94110,294.7983491602646 -94140,294.809368288357 -94170,294.82040967842613 -94200,294.8314731875743 -94230,294.8425586730691 -94260,294.8536659923434 -94290,294.86479500299504 -94320,294.87594556278697 -94350,294.8871175296469 -94380,294.8983107616673 -94410,294.9095251171051 -94440,294.9207604543818 -94470,294.93201663208333 -94500,294.94329350895964 -94530,294.9545909439249 -94560,294.96590879605736 -94590,294.97724692459894 -94620,294.9886051889555 -94650,294.9999834486964 -94680,295.0113815635548 -94710,295.022799393427 -94740,295.03423679837294 -94770,295.04569363861555 -94800,295.057169774541 -94830,295.06866506669854 -94860,295.0801793758002 -94890,295.0917125627209 -94920,295.1032644884984 -94950,295.11483501433287 -94980,295.1264240015872 -95010,295.1380313117868 -95040,295.1496568066193 -95070,295.1613088176616 -95100,295.17297324385703 -95130,295.184653431638 -95160,295.1963505821357 -95190,295.2080650045606 -95220,295.2197967106257 -95250,295.2315456128868 -95280,295.24331159092173 -95310,295.2550945134123 -95340,295.26689424551233 -95370,295.278710651306 -95400,295.2905435946282 -95430,295.3023929393379 -95460,295.31425854940966 -95490,295.326140288964 -95520,295.3380380222774 -95550,295.34995161378566 -95580,295.3618809280852 -95610,295.37382582993274 -95640,295.3857861842462 -95670,295.397761856104 -95700,295.4097527107455 -95730,295.42175861357055 -95760,295.4337794301396 -95790,295.44581502617376 -95820,295.45786526755467 -95850,295.4699300203242 -95880,295.4820091506849 -95910,295.4941025249995 -95940,295.50621000979106 -95970,295.5183314717429 -96000,295.5304667776985 -96030,295.5426157946616 -96060,295.5547783897959 -96090,295.5669544304253 -96120,295.57914378403365 -96150,295.59134631826475 -96180,295.60356190092256 -96210,295.6157903999707 -96240,295.62803168353287 -96270,295.64028561989244 -96300,295.65255207749266 -96330,295.6648309249365 -96360,295.6771220309868 -96390,295.689425264566 -96420,295.7017404947563 -96450,295.71406759079935 -96480,295.7264064220967 -96510,295.73875685820934 -96540,295.7511187688579 -96570,295.7634920239224 -96600,295.7758764934427 -96630,295.7882720476179 -96660,295.8006785568067 -96690,295.8130958915272 -96720,295.825523922457 -96750,295.8379625204332 -96780,295.8504115564523 -96810,295.86287090167 -96840,295.8753404274017 -96870,295.8878200051219 -96900,295.90030950646474 -96930,295.91280880322347 -96960,295.92531776735086 -96990,295.937836270959 -97020,295.95036418631923 -97050,295.9629013858623 -97080,295.97544774217835 -97110,295.98800312801666 -97140,296.00056741628595 -97170,296.0131404800543 -97200,296.02572219254904 -97230,296.0383124271569 -97260,296.0509110574238 -97290,296.06351795705507 -97320,296.07613299991544 -97350,296.08875606002886 -97380,296.10138701157865 -97410,296.1140257289075 -97440,296.12667208651754 -97470,296.1393259590701 -97500,296.15198722138604 -97530,296.1645404913497 -97560,296.17709871645474 -97590,296.18966346371246 -97620,296.2022351729946 -97650,296.2148139075388 -97680,296.2273996050204 -97710,296.2399921613273 -97740,296.2525914585125 -97770,296.2651973741212 -97800,296.277809784303 -97830,296.28290495958487 -97860,296.28801928644634 -97890,296.29315901749084 -97920,296.2983261140816 -97950,296.3035211034786 -97980,296.3087440346707 -98010,296.31399479730527 -98040,296.31927322810424 -98070,296.32457914637143 -98100,296.3299123658396 -98130,296.3321694008547 -98160,296.3344505448833 -98190,296.3367636858565 -98220,296.3391113152711 -98250,296.34149412115835 -98280,296.3439121900857 -98310,296.3463654082252 -98340,296.3488535951768 -98370,296.35137654861967 -98400,296.353934059211 -98430,296.35510603647 -98460,296.35630356603 -98490,296.35753501097474 -98520,296.35880301589054 -98550,296.3601083142661 -98580,296.3614510022333 -98610,296.36283096357283 -98640,296.36424801152367 -98670,296.3657019361001 -98700,296.36719251987927 -98730,296.36794457030555 -98760,296.3687222749217 -98790,296.3695340291316 -98820,296.3703824867173 -98850,296.3712683826394 -98880,296.37219181193325 -98910,296.37315265643366 -98940,296.3741507271592 -98970,296.3751858118201 -99000,296.37625769066966 -99030,296.37684207997563 -99060,296.37745170871483 -99090,296.3780948340751 -99120,296.3787740636421 -99150,296.37949011693905 -99180,296.38024308383075 -99210,296.381032844411 -99240,296.3818592091052 -99270,296.3827219654168 -99300,296.3836208935256 -99330,296.3841332122662 -99360,296.3846701522412 -99390,296.38523976529194 -99420,296.3858445910251 -99450,296.38648532689984 -99480,296.3871620560388 -99510,296.387874656908 -99540,296.3886229400132 -99570,296.3894066935105 -99600,296.39022569842416 -99630,296.39070208418065 -99660,296.3912023886079 -99690,296.3917344303848 -99720,296.392300672135 -99750,296.3929017865367 -99780,296.3935378493508 -99810,296.3942087374948 -99840,296.3949142618665 -99870,296.39565421166265 -99900,296.39642836916545 -99930,296.39688240166663 -99960,296.3973596113219 -99990,296.3978675708251 -100020,296.39840866168646 -100050,296.39898353057816 -100080,296.3995922456431 -100110,296.4002346823168 -100140,296.40091065206326 -100170,296.4016199453291 -100200,296.4023623458756 -100230,296.402799048471 -100260,296.40325816521033 -100290,296.4037470157445 -100320,296.4042678982142 -100350,296.4048214326344 -100380,296.4054076794138 -100410,296.40602651256864 -100440,296.4066777442505 -100470,296.4073611662972 -100500,296.40807656409635 -100530,296.40849771726766 -100560,296.408940506934 -100590,296.40941199490925 -100620,296.40991439444497 -100650,296.4104482984732 -100680,296.4110137596084 -100710,296.4116106505081 -100740,296.41223878411336 -100770,296.412897953768 -100800,296.4135879466048 -100830,296.41399410446115 -100860,296.4144211093586 -100890,296.41487576141634 -100920,296.4153601877813 -100950,296.4158749539711 -100980,296.4164201047688 -101010,296.4169955115346 -101040,296.41760098809226 -101070,296.418236329396 -101100,296.41890132443166 -101130,296.41929258001204 -101160,296.41970388268527 -101190,296.4201417674509 -101220,296.4206082742777 -101250,296.4211039409811 -101280,296.4216288044865 -101310,296.42218273491824 -101340,296.42276554707337 -101370,296.4233770376161 -101400,296.4240169974884 -101430,296.4243932732433 -101460,296.4247887863842 -101490,296.42520980360933 -101520,296.4256582767152 -101550,296.4261347155516 -101580,296.42663914916744 -101610,296.4271714465129 -101640,296.42773142344697 -101670,296.42831887844187 -101700,296.4289336044956 -101730,296.4292947625769 -101760,296.4296743390984 -101790,296.4300783294479 -101820,296.4305085963117 -101850,296.43096562132894 -101880,296.4314494256572 -101910,296.43195987713506 -101940,296.43249679277136 -101970,296.4330599729424 -102000,296.43364921280136 -102030,296.43399509696724 -102060,296.43435857182976 -102090,296.43474535860275 -102120,296.4351572299726 -102150,296.4355946391373 -102180,296.436057599353 -102210,296.43654597740937 -102240,296.4370595915525 -102270,296.43759824415787 -102300,296.4381617326314 -102330,296.4384921841992 -102360,296.4388393903354 -102390,296.4392087953536 -102420,296.4396020810952 -102450,296.4400196721011 -102480,296.4404615737194 -102510,296.4409276517546 -102540,296.4414177257762 -102570,296.441931600253 -102600,296.44246907494033 -102630,296.4427839388871 -102660,296.4431147132947 -102690,296.4434665629845 -102720,296.4438410781518 -102750,296.44423865447817 -102780,296.44465928940133 -102810,296.4451028478041 -102840,296.44556915066573 -102870,296.4460580046412 -102900,296.4465692119305 -102930,296.4468683392538 -102960,296.44718252535574 -102990,296.447516653107 -103020,296.4478722203 -103050,296.44824959356845 -103080,296.4486487624408 -103110,296.44906959094266 -103140,296.44951190154814 -103170,296.4499755031905 -103200,296.4504602006086 -103230,296.4507434492651 -103260,296.4510408978497 -103290,296.4513571449587 -103320,296.4516935952687 -103350,296.4520505861911 -103380,296.45242809935 -103410,296.4528259979787 -103440,296.45324410613034 -103470,296.45368223510764 -103500,296.45414019228105 -103530,296.4544074275833 -103560,296.454687997204 -103590,296.45498621327687 -103620,296.4553033866939 -103650,296.45563982548373 -103680,296.45599550337494 -103710,296.4563702828733 -103740,296.456763989695 -103770,296.4571764376019 -103800,296.4576074366879 -103830,296.4578585314936 -103860,296.458122088661 -103890,296.45840213180946 -103920,296.45869987742253 -103950,296.4590156039993 -103980,296.4593492773854 -104010,296.45970075942466 -104040,296.4600698775791 -104070,296.4604564481584 -104100,296.46086028407024 -104130,296.46109511889006 -104160,296.4613415381829 -104190,296.4616032751392 -104220,296.46188145125507 -104250,296.4621763153676 -104280,296.4624878254556 -104310,296.46281584276664 -104340,296.4631601965909 -104370,296.46352070587324 -104400,296.46389718642416 -104430,296.46411564949653 -104460,296.4643448136393 -104490,296.4645881198374 -104520,296.46484659406593 -104550,296.4651204553815 -104580,296.465409653916 -104610,296.465714050387 -104640,296.4660334759939 -104670,296.466367752403 -104700,296.46671669841515 -104730,296.46691868576653 -104760,296.467130485692 -104790,296.467355245334 -104820,296.4675938946579 -104850,296.46784662283585 -104880,296.46811337217656 -104910,296.46839400293374 -104940,296.46868834829644 -104970,296.4689962327372 -105000,296.46931747813363 -105030,296.4695028936306 -105060,296.4696972285343 -105090,296.46990333464754 -105120,296.47012204548366 -105150,296.47035352023994 -105180,296.4705976934295 -105210,296.47085442490874 -105240,296.47112354993567 -105270,296.47140489587264 -105300,296.47169828775884 -105330,296.4718670431543 -105360,296.4720438205437 -105390,296.4722311750332 -105420,296.4724298432872 -105450,296.4726399544526 -105480,296.4728614352781 -105510,296.47309414528934 -105540,296.47333792189187 -105570,296.47359259542 -105600,296.4738579941576 -105630,296.47401000913374 -105660,296.4741691448726 -105690,296.4743376585678 -105720,296.4745161896846 -105750,296.4747048372578 -105780,296.47490352030644 -105810,296.4751120980925 -105840,296.4753304102463 -105870,296.4755582901548 -105900,296.47579556942844 -105930,296.4759307716349 -105960,296.4760721899831 -105990,296.4762217826806 -106020,296.47638009168907 -106050,296.476547185884 -106080,296.4767229765933 -106110,296.4769073228824 -106140,296.4771000666827 -106170,296.4773010445131 -106200,296.47751009139085 -106230,296.4776284164792 -106260,296.47775205012925 -106290,296.4778826506312 -106320,296.4780206621846 -106350,296.47816612347333 -106380,296.4783189381767 -106410,296.47847896523 -106440,296.4786460489412 -106470,296.4788200290389 -106500,296.4790007440256 -106530,296.47910213568 -106560,296.47920792578884 -106590,296.4793194719362 -106620,296.4794371203486 -106650,296.4795608794995 -106680,296.47969064546515 -106710,296.4798262771184 -106740,296.47996762121744 -106770,296.4801145207774 -106800,296.48026681786246 -106830,296.4803512278264 -106860,296.4804391240438 -106890,296.4805315627467 -106920,296.4806287920238 -106950,296.4807307901342 -106980,296.48083744560057 -107010,296.4809486173004 -107040,296.4810641545153 -107070,296.4811839036212 -107100,296.4813077103194 -107130,296.4813750984188 -107160,296.4814450589108 -107190,296.4815183461733 -107220,296.4815951100391 -107250,296.4816752985633 -107280,296.4817587927681 -107310,296.4818454516027 -107340,296.4819351269439 -107370,296.4820276686015 -107400,296.4821229259876 -107430,296.4821732601497 -107460,296.48222525161884 -107490,296.4822793525602 -107520,296.48233561447927 -107550,296.4823939552518 -107580,296.4824542484563 -107610,296.4825163531807 -107640,296.4825801239676 -107670,296.4826454141321 -107700,296.4827120768686 -107730,296.48274533313776 -107760,296.48277933083875 -107790,296.48281421970984 -107820,296.4828499529044 -107850,296.4828864181583 -107880,296.4829234816661 -107910,296.48296100272177 -107940,296.4829988386028 -107970,296.4830368461995 -108000,296.4830748825586 -108030,296.4830910451069 -108060,296.4831069457724 -108090,296.48312244299336 -108120,296.4831373956172 -108150,296.48315166291576 -108180,296.4831651045852 -108210,296.4831775807447 -108240,296.4831889519366 -108270,296.4831990791251 -108300,296.48320782369615 -108330,296.4832070950424 -108360,296.4832052750267 -108390,296.4832019083258 -108420,296.4831967514581 -108450,296.4831896320398 -108480,296.4831804016895 -108510,296.4831689203139 -108540,296.483155050864 -108570,296.48313865758473 -108600,296.4831196054313 -108630,296.4831016453746 -108660,296.48308167858943 -108690,296.4830589476308 -108720,296.48303311090064 -108750,296.4830039660866 -108780,296.4829713576272 -108810,296.48293514583554 -108840,296.4828951965963 -108870,296.48285137792794 -108900,296.48280355883503 -108930,296.4827684568993 -108960,296.4827304336615 -108990,296.4826884298625 -109020,296.4826420059329 -109050,296.48259092972296 -109080,296.4825350385637 -109110,296.4824741932413 -109140,296.4824082626384 -109170,296.4823371186103 -109200,296.48226063427416 -109230,296.4822084378959 -109260,296.4821524069705 -109290,296.4820911809092 -109320,296.4820242223737 -109350,296.48195126948536 -109380,296.4818721525449 -109410,296.4817867328773 -109440,296.4816948824263 -109470,296.4815964769451 -109500,296.4814913937241 -109530,296.4814221394081 -109560,296.4813481391012 -109590,296.4812677315251 -109620,296.48118028182625 -109650,296.4810854985208 -109680,296.4809832049596 -109710,296.48087326307285 -109740,296.48075554792604 -109770,296.4806299392296 -109800,296.4804963185056 -109830,296.48041004363915 -109860,296.4803181135874 -109890,296.48021856717105 -109920,296.4801106723222 -109950,296.4799941080905 -109980,296.47986869096087 -110010,296.4797342835344 -110040,296.4795907640577 -110070,296.4794380162559 -110100,296.4792759259393 -110130,296.4791726732644 -110160,296.47906285889746 -110190,296.4789442226912 -110220,296.47881593571134 -110250,296.4786776476935 -110280,296.478529168344 -110310,296.4783703610003 -110340,296.4782011071484 -110370,296.47802129458296 -110400,296.4778308134569 -110430,296.477710632754 -110460,296.4775829869737 -110490,296.4774453180761 -110520,296.47729670065536 -110550,296.4771367552995 -110580,296.4769652850271 -110610,296.4767821539768 -110640,296.4765872469302 -110670,296.4763804558053 -110700,296.47616167514985 -110730,296.4760246238607 -110760,296.47587920766085 -110790,296.4757225718358 -110820,296.47555369494785 -110850,296.47537216861866 -110880,296.47517778927244 -110910,296.47497042191384 -110940,296.4747499546749 -110970,296.4745162836484 -111000,296.47426930782694 -111030,296.47411545127284 -111060,296.47395233395514 -111090,296.4737768058439 -111120,296.4735877499561 -111150,296.4733847291411 -111180,296.4731675333256 -111210,296.4729360284445 -111240,296.4726901060336 -111270,296.4724296664099 -111300,296.472154613059 -111330,296.47198402450255 -111360,296.4718032837368 -111390,296.4716089469159 -111420,296.4713998020433 -111450,296.47117538340376 -111480,296.47093547452675 -111510,296.47067994234123 -111540,296.4704086818383 -111570,296.4701215976065 -111600,296.46981859767067 -111630,296.46963135831646 -111660,296.46943308013863 -111690,296.469220027115 -111720,296.4689908928122 -111750,296.46874518317225 -111780,296.4684826754303 -111810,296.4682032375728 -111840,296.46790676809604 -111870,296.4675931759056 -111900,296.4672623736091 -111930,296.4670585725784 -111960,296.466842851363 -111990,296.46661118354336 -112020,296.4663621688708 -112050,296.46609528517985 -112080,296.4658103035174 -112110,296.46550709299004 -112140,296.4651855556477 -112170,296.4648456047564 -112200,296.4644871575481 -112230,296.4642668918414 -112260,296.4640338302621 -112290,296.4637836579095 -112320,296.4635148813865 -112350,296.4632269506686 -112380,296.4629196307233 -112410,296.4625927918397 -112440,296.462246339668 -112470,296.46188019187593 -112500,296.4614942703592 -112530,296.4612576448122 -112560,296.4610073537942 -112590,296.4607387959778 -112620,296.46045038552813 -112650,296.4601415448234 -112680,296.4598120328636 -112710,296.45946172118204 -112740,296.4590905190741 -112770,296.4586983486484 -112800,296.4582851365015 -112830,296.4580322637358 -112860,296.4577648624044 -112890,296.4574780469435 -112920,296.4571701398351 -112950,296.45684053613513 -112980,296.4564889889908 -113010,296.4561153712409 -113040,296.4557195958691 -113070,296.4553015894617 -113100,296.45486128335153 -113130,296.45459228372147 -113160,296.4543078993452 -113190,296.45400296274846 -113220,296.4536757055285 -113250,296.45332549570696 -113280,296.45295208069564 -113310,296.45255533469924 -113340,296.4521351744312 -113370,296.4516915309908 -113400,296.45122434047914 -113430,296.45093934201435 -113460,296.4506381099448 -113490,296.4503151973456 -113520,296.44996874577083 -113550,296.4495980965085 -113580,296.4492029913555 -113610,296.4487833059422 -113640,296.44833896075147 -113670,296.4478698914282 -113700,296.44737603887256 -113730,296.44707517721736 -113760,296.4467572408246 -113790,296.44641650591166 -113820,296.44605102487424 -113850,296.44566011258013 -113880,296.4452435053341 -113910,296.4448010802514 -113940,296.4443327616222 -113970,296.44383848966766 -114000,296.443318210115 -114030,296.4430016284636 -114060,296.4426671390682 -114090,296.4423087440129 -114120,296.44192440746195 -114150,296.4415134181891 -114180,296.4410755071324 -114210,296.4406105529507 -114240,296.44011848377727 -114270,296.4395992444381 -114300,296.4390527855134 -114330,296.4387206345419 -114360,296.4383697513426 -114390,296.4379938667216 -114420,296.4375908575804 -114450,296.4371599869374 -114480,296.436700980492 -114510,296.43621371850423 -114540,296.43569813298484 -114570,296.4351541733908 -114600,296.4345817951788 -114630,296.43423423297344 -114660,296.43386712297155 -114690,296.43347392768544 -114720,296.43305243776456 -114750,296.4326018908224 -114780,296.43212200745046 -114810,296.43161266956685 -114840,296.4310738130922 -114870,296.43050539213857 -114900,296.42990736706025 -114930,296.42954455904214 -114960,296.4291613969621 -114990,296.4287510781505 -115020,296.42831130805627 -115050,296.42784129925093 -115080,296.4273407673508 -115110,296.42680959598863 -115140,296.42624772502523 -115170,296.4256551132495 -115200,296.42503172593234 -115230,296.4246538447789 -115260,296.4242548129851 -115290,296.4238275659376 -115320,296.42336972497657 -115350,296.42288047800673 -115380,296.4223595358046 -115410,296.42180678377264 -115440,296.4212221657405 -115470,296.42060564519375 -115500,296.4199571923363 -115530,296.41956441789887 -115560,296.4191497063088 -115590,296.4187057343717 -115620,296.4182300404516 -115650,296.4177217881723 -115680,296.4171806836083 -115710,296.41660661398646 -115740,296.4159995271322 -115770,296.41535939124486 -115800,296.4146861814756 -115830,296.4142787006939 -115860,296.41384850668777 -115890,296.41338802116763 -115920,296.41289470069273 -115950,296.4123676850045 -115980,296.4118066756151 -116010,296.4112115616294 -116040,296.4105822948934 -116070,296.4099188483353 -116100,296.40922120206545 -116130,296.40879920887863 -116160,296.4083537372054 -116190,296.4078769572684 -116220,296.40736624503256 -116250,296.40682071676616 -116280,296.4062400695614 -116310,296.4056241944539 -116340,296.40497304733293 -116370,296.4042866058688 -116400,296.4035648551403 -116430,296.4031285503945 -116460,296.40266801307456 -116490,296.40217516564206 -116520,296.4016473047166 -116550,296.401083523514 -116580,296.40048351485046 -116610,296.3998471717442 -116640,296.39917445414903 -116670,296.39846534448765 -116700,296.39771983281463 -116730,296.39726942416775 -116760,296.39679404039185 -116790,296.3962853600325 -116820,296.3957406016507 -116850,296.3951588358412 -116880,296.3945397512904 -116910,296.3938832430502 -116940,296.3931892751579 -116970,296.39245783479714 -117000,296.3916889170028 -117030,296.3912246188253 -117060,296.3907346148504 -117090,296.39021034366846 -117120,296.3896489471056 -117150,296.3890494735781 -117180,296.38841160779094 -117210,296.38773524687923 -117240,296.387020358981 -117270,296.3862669360468 -117300,296.3854749780943 -117330,296.38499701136715 -117360,296.38449262040854 -117390,296.3839530079287 -117420,296.3833752403792 -117450,296.3827583444507 -117480,296.38210200101645 -117510,296.3814061093443 -117540,296.3806706416879 -117570,296.3798955947687 -117600,296.37908097358707 -117630,296.378589565797 -117660,296.3780710279174 -117690,296.37751633096593 -117720,296.3769224674158 -117750,296.3762884426952 -117780,296.3756139339978 -117810,296.3748988427719 -117840,296.3741431454001 -117870,296.3733468433763 -117900,296.3725099466811 -117930,296.3720053317118 -117960,296.3714728937071 -117990,296.3709033762896 -118020,296.3702936993857 -118050,296.3696428476344 -118080,296.3689504947035 -118110,296.36821654426853 -118140,296.3674409768524 -118170,296.36662379872047 -118200,296.3657650248291 -118230,296.3652474428504 -118260,296.3647013581322 -118290,296.36411729130816 -118320,296.3634920912236 -118350,296.36282472221177 -118380,296.3621148545698 -118410,296.36136239424644 -118440,296.3605673259139 -118470,296.35972966060643 -118500,296.35884941824884 -118530,296.3583191156019 -118560,296.357759644077 -118590,296.3571613058305 -118620,296.35652088012665 -118650,296.3558373114858 -118680,296.35511026699135 -118710,296.35433965490984 -118740,296.3535254640704 -118770,296.3526677102706 -118800,296.35176641839433 -118830,296.3512236474749 -118860,296.3506510554214 -118890,296.3500387305291 -118920,296.34938338401383 -118950,296.34868394108554 -118980,296.3479400657723 -119010,296.3471516687023 -119040,296.34631874286663 -119070,296.3454413088189 -119100,296.3445193963901 -119130,296.343964415528 -119160,296.3433789754686 -119190,296.34275295536384 -119220,296.3420829999466 -119250,296.34136801562784 -119280,296.34060766354014 -119310,296.33980185671584 -119340,296.3389505923115 -119370,296.3380538956269 -119400,296.33711180142586 -119430,296.3365448747622 -119460,296.3359468653347 -119490,296.3353074479692 -119520,296.33462320251243 -119550,296.3338930170969 -119580,296.33311655012113 -119610,296.3322937170629 -119640,296.3314245192457 -119670,296.33050898670314 -119700,296.3295471591157 -119730,296.3289685564771 -119760,296.32835826230155 -119790,296.3277057520032 -119820,296.32700754217075 -119850,296.3262625031872 -119880,296.32547029087954 -119910,296.3246308232114 -119940,296.32374410567223 -119970,296.32281017301574 -120000,296.32182906981967 -120030,296.3212390665899 -120060,296.3206167781332 -120090,296.3199514854616 -120120,296.3192396435634 -120150,296.3184801056099 -120180,296.3176725250205 -120210,296.3168168222835 -120240,296.315913007052 -120270,296.3149611187827 -120300,296.31396120693 -120330,296.3133600839189 -120360,296.31272609735674 -120390,296.3120483389552 -120420,296.31132320378947 -120450,296.310549528365 -120480,296.30972696385845 -120510,296.3088554333208 -120540,296.30793495056383 -120570,296.3069655597292 -120600,296.3059473151237 -120630,296.3053353584336 -120660,296.304689975509 -120690,296.3040000739537 -120720,296.3032619906454 -120750,296.30247454597753 -120780,296.30163738905 -120810,296.3007504455129 -120840,296.29981373333067 -120870,296.29882730130805 -120900,296.297791208579 -120930,296.2971687094683 -120960,296.29651223734874 -120990,296.2958105209955 -121020,296.29505984083227 -121050,296.294259001702 -121080,296.29340765079473 -121110,296.2925057163953 -121140,296.29155322061183 -121170,296.2905502168895 -121200,296.28949676916096 -121230,296.28886402390583 -121260,296.2881967750364 -121290,296.28748357786407 -121320,296.28672065812907 -121350,296.28590680569243 -121380,296.2850416660024 -121410,296.2841251700125 -121440,296.28315734396426 -121470,296.2821382459176 -121500,296.28106794457346 -121530,296.28042525432653 -121560,296.2797475462816 -121590,296.2790232077334 -121620,296.2782484115351 -121650,296.2774219331417 -121680,296.2765434164284 -121710,296.2756127950505 -121740,296.2746300993702 -121770,296.2735953920347 -121800,296.2725087464806 -121830,296.27185641712776 -121860,296.27116857245943 -121890,296.2704334372813 -121920,296.26964713338066 -121950,296.2688084223894 -121980,296.2679169467792 -122010,296.26697264293864 -122040,296.26597554533623 -122070,296.26492572117644 -122100,296.2638232485966 -122130,296.2631615906117 -122160,296.2624639366969 -122190,296.2617183547734 -122220,296.26092091740844 -122250,296.2600703730004 -122280,296.25916636278754 -122310,296.2582088259217 -122340,296.2571978009616 -122370,296.256133359637 -122400,296.2550155847488 -122430,296.2543449130452 -122460,296.25363778192934 -122490,296.252882108117 -122520,296.25207391682466 -122550,296.2512119438128 -122580,296.25029582925697 -122610,296.24932551510165 -122640,296.2483010439769 -122670,296.2472224921038 -122700,296.2460899469074 -122730,296.2454105806888 -122760,296.244694308928 -122790,296.2439289028865 -122820,296.2431103423221 -122850,296.24223735095893 -122880,296.24130956808114 -122910,296.2403269384532 -122940,296.2392895087566 -122970,296.2381973596673 -123000,296.2370505831929 -123030,296.23636284580107 -123060,296.2356377743019 -123090,296.2348630003232 -123120,296.2340344600772 -123150,296.2331508658593 -123180,296.2322118562339 -123210,296.2312173788119 -123240,296.23016748430376 -123270,296.2290622578021 -123300,296.22790179585326 -123330,296.227206014614 -123360,296.2264724884712 -123390,296.22568871530564 -123420,296.2248505897183 -123450,296.2239568131886 -123480,296.22300702373326 -123510,296.22200117183445 -123540,296.2209393122077 -123570,296.2198215343216 -123600,296.2186479392152 -123630,296.21794444528297 -123660,296.2172028136152 -123690,296.2164104142963 -123720,296.21556310227004 -123750,296.2146595688178 -123780,296.21369945158085 -123810,296.2126827039364 -123840,296.2116093845786 -123870,296.2104795873097 -123900,296.2092934176135 -123930,296.2085825458134 -123960,296.20783316159714 -123990,296.2070325132641 -124020,296.2061764180735 -124050,296.2052635577316 -124080,296.20429356967685 -124110,296.20326641020336 -124140,296.2021821419565 -124170,296.20104086302723 -124200,296.1998426832937 -124230,296.1991247719624 -124260,296.1983679918639 -124290,296.19755947558207 -124320,296.196695004682 -124350,296.19577325192256 -124380,296.19479385471175 -124410,296.1937567722816 -124440,296.1926620711985 -124470,296.19150985379576 -124500,296.19030023429355 -124530,296.189575625118 -124560,296.1888118093236 -124590,296.1879958099028 -124620,296.1871233747346 -124650,296.18619316826204 -124680,296.18520482803524 -124710,296.18415831624344 -124740,296.18305370334264 -124770,296.18189109585944 -124800,296.18067061230187 -124830,296.179939650157 -124860,296.1791691622017 -124890,296.1783460680133 -124920,296.1774660838089 -124950,296.176527866351 -124980,296.1755310535046 -125010,296.17447561043406 -125040,296.17336161145136 -125070,296.1721891672259 -125100,296.17095840049706 -125130,296.1702214332814 -125160,296.1694446398757 -125190,296.1686148426682 -125220,296.1677277282523 -125250,296.1667819463499 -125280,296.16577713531274 -125310,296.16471326329724 -125340,296.1635904084358 -125370,296.162408685488 -125400,296.1611682213662 -125430,296.1604255998363 -125460,296.1596428706917 -125490,296.1588067654035 -125520,296.1579129429946 -125550,296.15696004678847 -125580,296.15594771579623 -125610,296.15487592118114 -125640,296.1537447448592 -125670,296.1525543056252 -125700,296.1513047345041 -125730,296.15055681210777 -125760,296.14976851976104 -125790,296.14892650433296 -125820,296.14802639934203 -125850,296.14706684235927 -125880,296.14604747322664 -125910,296.14496826612816 -125940,296.14382930672423 -125970,296.14263071778856 -126000,296.1413726343965 -126030,296.14010367302257 -126060,296.1387951291312 -126090,296.1374339115513 -126120,296.13601574095713 -126150,296.13453928364595 -126180,296.13300418869204 -126210,296.1314104330097 -126240,296.12975810282194 -126270,296.12804732074426 -126300,296.1262782214553 -126330,296.1244509435791 -126360,296.1225656269769 -126390,296.1206224118438 -126420,296.1186214384077 -126450,296.11656284682937 -126480,296.1144467771692 -126510,296.11227336937634 -126540,296.11004276328595 -126570,296.107755098618 -126600,296.1054105149774 -126630,296.1030091518548 -126660,296.10055114862644 -126690,296.098036644555 -126720,296.09546577879 -126750,296.092838690368 -126780,296.0901555182137 -126810,296.0874164011399 -126840,296.0846214778479 -126870,296.0817708869285 -126900,296.07886476686195 -126930,296.0759032560188 -126960,296.0728864926599 -126990,296.06981461493746 -127020,296.06668776089504 -127050,296.06350606846814 -127080,296.06026967548473 -127110,296.0569787196656 -127140,296.0536333386248 -127170,296.0502336698701 -127200,296.04677985080366 -127230,296.043272018722 -127260,296.0397103108168 -127290,296.03609486417525 -127320,296.0324258157804 -127350,296.02870330251164 -127380,296.0249274611452 -127410,296.0210984283544 -127440,296.0172163407101 -127470,296.0132813346815 -127500,296.00929354663583 -127530,296.00525311283934 -127560,296.0011601694575 -127590,295.9970148525555 -127620,295.99281729809843 -127650,295.988567641952 -127680,295.9842660198826 -127710,295.9799125675581 -127740,295.9755074205476 -127770,295.97105071432253 -127800,295.9665425842568 -127830,295.9619831656267 -127860,295.9573725936122 -127890,295.9527110032965 -127920,295.9479985296667 -127950,295.94323530761426 -127980,295.93842147193544 -128010,295.93355715733134 -128040,295.9286424984085 -128070,295.92367762967933 -128100,295.91866268556214 -128130,295.913597800382 -128160,295.90848310837055 -128190,295.9033187436668 -128220,295.8981048403171 -128250,295.89284153227595 -128280,295.8875289534058 -128310,295.88216723747786 -128340,295.8767565181721 -128370,295.8712969290779 -128400,295.86578860369406 -128430,295.86023167542936 -128460,295.85462627760285 -128490,295.8489725434441 -128520,295.84327060609354 -128550,295.8375205986029 -128580,295.8317226539354 -128610,295.8258769049661 -128640,295.81998348448224 -128670,295.81404252518354 -128700,295.80805415968257 -128730,295.8020185205049 -128760,295.79593574008953 -128790,295.78980595078923 -128820,295.78362928487064 -128850,295.77740587451484 -128880,295.77113585181746 -128910,295.76481934878905 -128940,295.7584564973553 -128970,295.75204742935745 -129000,295.7455922765524 -129030,295.7390911706131 -129060,295.7325442431289 -129090,295.72595162560583 -129120,295.7193134494666 -129150,295.7126298460512 -129180,295.705900946617 -129210,295.6991268823392 -129240,295.6923077843108 -129270,295.6854437835431 -129300,295.678535010966 -129330,295.671581597428 -129360,295.66458367369665 -129390,295.65754137045894 -129420,295.6504548183211 -129450,295.6433241478095 -129480,295.6361494893701 -129510,295.6289309733696 -129540,295.62166873009494 -129570,295.6143628897539 -129600,295.6070135824753 -129630,295.5996209383091 -129660,295.5921850872269 -129690,295.5847061591219 -129720,295.5771842838093 -129750,295.5696195910265 -129780,295.56201221043324 -129810,295.554362271612 -129840,295.54666990406804 -129870,295.53893523722974 -129900,295.5311584004487 -129930,295.5233395230002 -129960,295.515478734083 -129990,295.50757616282004 -130020,295.49963193825835 -130050,295.49164618936925 -130080,295.4836190450487 -130110,295.4755506341175 -130140,295.46744108532124 -130170,295.4592905273309 -130200,295.45109908874264 -130230,295.4428668980784 -130260,295.4345940837856 -130290,295.4262807742379 -130320,295.417927097735 -130350,295.4095331825029 -130380,295.4010991566943 -130410,295.3926251483882 -130440,295.384111285591 -130470,295.37555769623583 -130500,295.3669645081831 -130530,295.3583318492208 -130560,295.3496598470644 -130590,295.34094862935706 -130620,295.33219832367 -130650,295.32340905750254 -130680,295.31458095828225 -130710,295.3057141533651 -130740,295.29680877003574 -130770,295.2878649355075 -130800,295.2788827769226 -130830,295.26986242135246 -130860,295.2608039957975 -130890,295.2517076271878 -130920,295.2425734423827 -130950,295.2334015681714 -130980,295.22419213127284 -131010,295.21494525833594 -131040,295.20566107593976 -131070,295.1963397105935 -131100,295.18698128873694 -131130,295.1775859367402 -131160,295.1681537809041 -131190,295.1586849474604 -131220,295.14917942707035 -131250,295.1396330572845 -131280,295.1300542728783 -131310,295.1204397761615 -131340,295.1107893857683 -131370,295.10110312499745 -131400,295.091381085392 -131430,295.0816233812206 -131460,295.0718301342894 -131490,295.0620014688743 -131520,295.05213751003 -131550,295.042238383026 -131580,295.03230421315857 -131610,295.0223351256877 -131640,295.0123312458165 -131670,295.0022926986843 -131700,294.9922196093644 -131730,294.98211210286325 -131760,294.9719703041205 -131790,294.9617943380088 -131820,294.9515843293342 -131850,294.9413404028357 -131880,294.931062683186 -131910,294.9207512949909 -131940,294.91040636279 -131970,294.90002801105635 -132000,294.88961636419674 -132030,294.8791715465518 -132060,294.8686936823959 -132090,294.8581828959374 -132120,294.84763931131874 -132150,294.83706305261643 -132180,294.8264542438412 -132210,294.8158130089378 -132240,294.8051394717856 -132270,294.79443375619815 -132300,294.7836959859235 -132330,294.7729262846442 -132360,294.7621247759775 -132390,294.7512915834751 -132420,294.7404268306236 -132450,294.72953064084425 -132480,294.71860313749306 -132510,294.7076444438612 -132540,294.6966546831744 -132570,294.6856339785936 -132600,294.6745824532148 -132630,294.663500230069 -132660,294.65238743212245 -132690,294.64124418227635 -132720,294.63007060336736 -132750,294.6188668181673 -132780,294.6076329493834 -132810,294.59636911965816 -132840,294.58507545156954 -132870,294.5737520676308 -132900,294.56239909029074 -132930,294.55101664193376 -132960,294.5396048448797 -132990,294.52816382138394 -133020,294.5166936936375 -133050,294.505194583767 -133080,294.4936666138347 -133110,294.4821099058387 -133140,294.4705245817124 -133170,294.45891076332543 -133200,294.4472685724828 -133230,294.43559813092526 -133260,294.4238995603296 -133290,294.4121729823082 -133320,294.40041851840937 -133350,294.3886362901171 -133380,294.3768264188513 -133410,294.3649890259679 -133440,294.35312423275815 -133470,294.3412321604497 -133500,294.329312930206 -133530,294.3173666631259 -133560,294.3053934802446 -133590,294.2933935025331 -133620,294.2813668508981 -133650,294.26931364618235 -133680,294.2572340091643 -133710,294.2451280605584 -133740,294.2329959210149 -133770,294.2208377111199 -133800,294.20865355139534 -133830,294.19644356229907 -133860,294.1842078642246 -133890,294.1719465775015 -133920,294.1596598223948 -133950,294.1473477191056 -133980,294.13501038777065 -134010,294.1226479484625 -134040,294.1102605211893 -134070,294.097848225895 -134100,294.08541118245927 -134130,294.07294951069736 -134160,294.06046333036016 -134190,294.0479527611343 -134220,294.0354179226418 -134250,294.0228589344404 -134280,294.01027591602315 -134310,293.9976689868189 -134340,293.9850382661917 -134370,293.9723838734411 -134400,293.9597059278022 -134430,293.9470045484451 -134460,293.9342798544755 -134490,293.92153196493445 -134520,293.908760998798 -134550,293.8959670749774 -134580,293.88315031231934 -134610,293.8703108296053 -134640,293.85744874555195 -134670,293.84456417881097 -134700,293.831657247969 -134730,293.8187280715477 -134760,293.80577676800345 -134790,293.7928034557275 -134820,293.77980825304587 -134850,293.76679127821933 -134880,293.75375264944324 -134910,293.74069248484767 -134940,293.7276109024971 -134970,293.7145080203905 -135000,293.7013839564615 -135030,293.68823882857765 -135060,293.67507275454125 -135090,293.6618858520886 -135120,293.6486782388901 -135150,293.63545003255047 -135180,293.62220135060835 -135210,293.6089323105364 -135240,293.59564302974104 -135270,293.58233362556274 -135300,293.5690042152756 -135330,293.5556549160873 -135360,293.5422858451396 -135390,293.5288971195069 -135420,293.5154888561981 -135450,293.50206117215475 -135480,293.488614184252 -135510,293.4751480092981 -135540,293.4616627640348 -135570,293.4481585651363 -135600,293.4346355292102 -135630,293.4210937727969 -135660,293.40753341236973 -135690,293.39395456433454 -135720,293.38035734502995 -135750,293.366741870727 -135780,293.35310825762934 -135810,293.3394566218729 -135840,293.3257870795259 -135870,293.31209974658884 -135900,293.2983947389941 -135930,293.28467217260624 -135960,293.27093216322163 -135990,293.25717482656853 -136020,293.2434002783068 -136050,293.22960863402795 -136080,293.2158000092551 -136110,293.2019745194425 -136140,293.188132279976 -136170,293.1742734061725 -136200,293.1603980132801 -136230,293.14650621647775 -136260,293.1325981308754 -136290,293.1186738715137 -136320,293.10473355336404 -136350,293.0907772913283 -136380,293.0768052002389 -136410,293.0628173948585 -136440,293.0488139898801 -136470,293.0347950999267 -136500,293.02076083955143 -136530,293.0144348850228 -136560,293.0080834370477 -136590,293.00169812610494 -136620,292.9952762781557 -136650,292.98881712298146 -136680,292.9823205254217 -136710,292.97578656202995 -136740,292.9692153798175 -136770,292.9626071491214 -136800,292.95596204787824 -136830,292.95313827826715 -136860,292.9502824907645 -136890,292.94738416388645 -136920,292.9444399259009 -136950,292.94144879499714 -136980,292.9384105865528 -137010,292.9353253816913 -137040,292.9321933499576 -137070,292.9290146901506 -137100,292.9257896105821 -137130,292.9243002332491 -137160,292.92277666026143 -137190,292.9212076530283 -137220,292.919589608504 -137250,292.917921475941 -137280,292.9162030559335 -137310,292.91443443286363 -137340,292.91261578552763 -137370,292.91074732394924 -137400,292.9088292682963 -137430,292.9078518217896 -137460,292.9068396618897 -137490,292.9057813808633 -137520,292.90467332244407 -137550,292.9035144214077 -137580,292.90230447678647 -137610,292.9010435756976 -137640,292.8997319010944 -137670,292.8983696676194 -137700,292.89695710020175 -137730,292.8961796630595 -137760,292.8953676350976 -137790,292.8945096507873 -137820,292.8936020693166 -137850,292.8926438319682 -137880,292.89163474128964 -137910,292.8905748869085 -137940,292.88946445394697 -137970,292.88830365909564 -138000,292.8870927292849 -138030,292.88639712323425 -138060,292.8856673021244 -138090,292.884892026185 -138120,292.88406769719194 -138150,292.88319327120973 -138180,292.8822685562856 -138210,292.8812936444455 -138240,292.88026872217057 -138270,292.8791940071595 -138300,292.8780697272294 -138330,292.8774112951951 -138360,292.8767191299816 -138390,292.87598215258134 -138420,292.8751968187099 -138450,292.87436210265975 -138480,292.87347781878657 -138510,292.8725440614444 -138540,292.87156101811064 -138570,292.8705289070332 -138600,292.8694479564252 -138630,292.86880993913684 -138660,292.86813872069627 -138690,292.8674233993853 -138720,292.8666604902044 -138750,292.8658489872811 -138780,292.86498871164014 -138810,292.8640797599087 -138840,292.8631223203677 -138870,292.86211661157506 -138900,292.86106286188635 -138930,292.8604390840693 -138960,292.8597826658668 -138990,292.85908289230906 -139020,292.8583363407284 -139050,292.8575420259907 -139080,292.85669977597854 -139110,292.85580968954224 -139140,292.8548719556371 -139170,292.85388679297586 -139200,292.8528544298932 -139230,292.8522427297264 -139260,292.85159897038585 -139290,292.8509126303704 -139320,292.8501803514999 -139350,292.8494011700091 -139380,292.848574920759 -139410,292.84770170477486 -139440,292.84678171158146 -139470,292.84581515992284 -139500,292.8448022779829 -139530,292.8442020135428 -139560,292.8435702882626 -139590,292.84289677973214 -139620,292.8421781960572 -139650,292.8414135953609 -139680,292.8406028195765 -139710,292.83974597185534 -139740,292.8388432421959 -139770,292.837894849262 -139800,292.83690102097046 -139830,292.8363121238615 -139860,292.835692379927 -139890,292.8350316709941 -139920,292.83432677309685 -139950,292.83357676671835 -139980,292.832781500945 -140010,292.83194108100497 -140040,292.83105569727775 -140070,292.83012556824013 -140100,292.82915092143026 -140130,292.8285735375614 -140160,292.82796593583174 -140190,292.8273182072093 -140220,292.82662719722003 -140250,292.8258920091534 -140280,292.82511249932264 -140310,292.8242887749829 -140340,292.82342102680303 -140370,292.8225094729679 -140400,292.82155434052754 -140430,292.8209886937081 -140460,292.82039347247667 -140490,292.819758981692 -140520,292.8190821378838 -140550,292.81836206757816 -140580,292.8175986343846 -140610,292.8167919475338 -140640,292.81594219789315 -140670,292.8150496032513 -140700,292.8141143900616 -140730,292.81356073015684 -140760,292.8129781534037 -140790,292.8123571831782 -140820,292.811694808486 -140850,292.81099017950646 -140880,292.8102431672107 -140910,292.80945388275296 -140940,292.8086225171083 -140970,292.8077492875651 -141000,292.8068344198723 -141030,292.8062930030502 -141060,292.8057233407212 -141090,292.8051161792936 -141120,292.80446858168324 -141150,292.8037797221281 -141180,292.80304947902226 -141210,292.8022779653907 -141240,292.8014653722251 -141270,292.8006119162102 -141300,292.79971782228284 -141330,292.7991889034413 -141360,292.7986324238835 -141390,292.7980393574557 -141420,292.7974068423827 -141450,292.7967340773541 -141480,292.7960209482447 -141510,292.7952675698966 -141540,292.7944741332272 -141570,292.79364085421446 -141600,292.7927679568761 -141630,292.79225178669384 -141660,292.7917087537059 -141690,292.79113006349286 -141720,292.79051293095046 -141750,292.7898565796015 -141780,292.78916090285617 -141810,292.78842601731867 -141840,292.7876521137412 -141870,292.7868394072922 -141900,292.7859881209637 -141930,292.7854849447082 -141960,292.78495561634384 -141990,292.7843915773712 -142020,292.7837901206828 -142050,292.78315049500407 -142080,292.7824726013312 -142110,292.78175655797514 -142140,292.78100255543217 -142170,292.78021080795884 -142200,292.77938153741525 -142230,292.7788915944185 -142260,292.7783762224575 -142290,292.7778271030257 -142320,292.7772416083009 -142350,292.7766190125689 -142380,292.77595922445886 -142410,292.7752623639324 -142440,292.77452862113904 -142470,292.7737582093214 -142500,292.772951349102 -142530,292.7724748724923 -142560,292.771973702166 -142590,292.7714397635687 -142620,292.77087050941407 -142650,292.7702652398935 -142680,292.7696238713128 -142710,292.76894652522697 -142740,292.7682333913484 -142770,292.7674846818042 -142800,292.7667006158745 -142830,292.76623783240655 -142860,292.76575110222313 -142890,292.76523259856435 -142920,292.7646798558922 -142950,292.76409220063687 -142980,292.7634695568205 -143010,292.7628120475338 -143040,292.7621198619616 -143070,292.76139321101465 -143100,292.76063231252624 -143130,292.76018344245136 -143160,292.7597113840597 -143190,292.75920856211087 -143220,292.7586725939886 -143250,292.7581028326824 -143280,292.75749920996714 -143310,292.7568618504102 -143340,292.756190942579 -143370,292.7554866960678 -143400,292.7547493271591 -143430,292.7543145841117 -143460,292.75385742218293 -143490,292.7533705212569 -143520,292.75285158277313 -143550,292.7522999865885 -143580,292.75171567226283 -143610,292.7510987657812 -143640,292.7504494550039 -143670,292.74976794810846 -143700,292.74905445972405 -143730,292.7486340506166 -143760,292.7481920027339 -143790,292.74772125456803 -143820,292.74721959270835 -143850,292.746686424174 -143880,292.7461216963388 -143910,292.7455255365454 -143940,292.7448981318575 -143970,292.74423968893706 -144000,292.74355042065764 -144030,292.7431445455815 -144060,292.74271782213526 -144090,292.7422634507798 -144120,292.7417793043076 -144150,292.74126481718247 -144180,292.74071994461707 -144210,292.7401448152513 -144240,292.73953961526314 -144270,292.7389045497005 -144300,292.73823982958004 -144330,292.7378486817091 -144360,292.7374374857965 -144390,292.7369997075073 -144420,292.73653330684994 -144450,292.736037746002 -144480,292.7355129880362 -144510,292.7349591628283 -144540,292.7343764555821 -144570,292.73376506963393 -144600,292.73312521404307 -144630,292.7327489795423 -144660,292.7323535068702 -144690,292.7319325300062 -144720,292.7314840971451 -144750,292.7310076984343 -144780,292.7305033048245 -144810,292.7299710473654 -144840,292.7294111101982 -144870,292.7288236948511 -144900,292.7282090083264 -144930,292.7278478662625 -144960,292.72746830505446 -144990,292.72706432997774 -145020,292.7266340783426 -145050,292.72617706850906 -145080,292.7256932793192 -145110,292.7251828429345 -145140,292.72464594234606 -145170,292.7240827771779 -145200,292.7234935522768 -145230,292.72314767453366 -145260,292.7227842054404 -145290,292.72239742442133 -145320,292.7219855587888 -145350,292.72154815534435 -145380,292.721085200832 -145410,292.7205968284618 -145440,292.7200832199878 -145470,292.71954457303474 -145500,292.71898109019656 -145530,292.71865064139286 -145560,292.718303437406 -145590,292.7179340345313 -145620,292.71754075092707 -145650,292.71712316205225 -145680,292.7166812625586 -145710,292.71621518664176 -145740,292.7157251147321 -145770,292.7152112423609 -145800,292.7146737697729 -145830,292.714358907184 -145860,292.7140281335538 -145890,292.7136762846394 -145920,292.71330177024515 -145950,292.7129041946896 -145980,292.712483560535 -146010,292.7120400028985 -146040,292.71157370080084 -146070,292.711084847587 -146100,292.71057364105707 -146130,292.7102745145402 -146160,292.70996032869704 -146190,292.70962620120395 -146220,292.7092706342684 -146250,292.70889326125666 -146280,292.7084940926402 -146310,292.7080732643934 -146340,292.7076309540423 -146370,292.7071673526535 -146400,292.7066826554883 -146430,292.70639940741114 -146460,292.7061019588906 -146490,292.7057857118454 -146520,292.70544926159914 -146550,292.70509227074024 -146580,292.7047147576446 -146610,292.704316859079 -146640,292.7038987509903 -146670,292.70346062207574 -146700,292.70300266496486 -146730,292.7027354301377 -146760,292.7024548605092 -146790,292.70215664442844 -146820,292.70183947100355 -146850,292.7015030322059 -146880,292.7011473543069 -146910,292.70077257480074 -146940,292.7003788679713 -146970,292.6999664200566 -147000,292.6995354209629 -147030,292.6992843265748 -147060,292.69902076937416 -147090,292.6987407261926 -147120,292.6984429805466 -147150,292.6981272539369 -147180,292.697793580518 -147210,292.69744209844606 -147240,292.697072980259 -147270,292.6966864096472 -147300,292.6962825737029 -147330,292.6960477392609 -147360,292.6958013199273 -147390,292.69553958293034 -147420,292.695261406774 -147450,292.694966542621 -147480,292.69465503249273 -147510,292.69432701514154 -147540,292.69398266127723 -147570,292.6936221519549 -147600,292.6932456713642 -147630,292.69302720863635 -147660,292.69279804445193 -147690,292.69255473821227 -147720,292.69229626394235 -147750,292.6920224025855 -147780,292.69173320400984 -147810,292.6914288074978 -147840,292.69110938185 -147870,292.6907751054002 -147900,292.6904261593474 -147930,292.6902241723098 -147960,292.6900123723445 -147990,292.6897876126628 -148020,292.6895489632992 -148050,292.68929623508166 -148080,292.6890294857015 -148110,292.688748854905 -148140,292.68845450950306 -148170,292.68814662502325 -148200,292.6878253795879 -148230,292.687639964375 -148260,292.687445629434 -148290,292.68723952328367 -148320,292.6870208124105 -148350,292.6867893376173 -148380,292.68654516439096 -148410,292.6862884328751 -148440,292.68601930781153 -148470,292.6857379618381 -148500,292.6854445699155 -148530,292.6852758147746 -148560,292.685099037351 -148590,292.6849116828274 -148620,292.6847130145394 -148650,292.6845029033401 -148680,292.6842814224808 -148710,292.68404871243587 -148740,292.68380493579974 -148770,292.68355026223816 -148800,292.6832848634671 -148830,292.68313284871624 -148860,292.6829737129464 -148890,292.6828051992203 -148920,292.68262666807266 -148950,292.6824380204688 -148980,292.68223933738955 -149010,292.6820307595729 -149040,292.68181244738867 -149070,292.6815845674498 -149100,292.68134728814584 -149130,292.68121208613536 -149160,292.6810706677595 -149190,292.6809210750343 -149220,292.6807627659983 -149250,292.680595671776 -149280,292.68041988103914 -149310,292.6802355347227 -149340,292.68004279089524 -149370,292.6798418130376 -149400,292.67963276613284 -149430,292.6795144412112 -149460,292.6793908075367 -149490,292.67926020701043 -149520,292.6791221954327 -149550,292.6789767341197 -149580,292.6788239193922 -149610,292.6786638923148 -149640,292.67849680857967 -149670,292.678322828458 -149700,292.6781421134474 -149730,292.6780407219305 -149760,292.6779349318004 -149790,292.6778233856319 -149820,292.6777057371984 -149850,292.6775819780265 -149880,292.67745221203995 -149910,292.67731658036587 -149940,292.677175236246 -149970,292.67702833666533 -150000,292.6768760395596 -150030,292.6767916297041 -150060,292.6767037334688 -150090,292.67661129474806 -150120,292.6765140654532 -150150,292.6764120673251 -150180,292.67630541184104 -150210,292.6761942401236 -150240,292.6760787028911 -150270,292.67595895376775 -150300,292.67583514705206 -150330,292.67576775903194 -150360,292.67569779852533 -150390,292.6756245112482 -150420,292.67554774736783 -150450,292.67546755882915 -150480,292.6753840646099 -150510,292.6752974057609 -150540,292.6752077304053 -150570,292.67511518873334 -150600,292.67501993133294 -150630,292.67496959722104 -150660,292.67491760574063 -150690,292.67486350478794 -150720,292.6748072428576 -150750,292.6747489020738 -150780,292.6746886088581 -150810,292.67462650412256 -150840,292.67456273332454 -150870,292.67449744314894 -150900,292.67443078040134 -150930,292.6743975241535 -150960,292.67436352644444 -150990,292.67432863756534 -151020,292.67429290436274 -151050,292.674256439101 -151080,292.6742193755852 -151110,292.6741818545216 -151140,292.67414401863266 -151170,292.674106011028 -151200,292.6740679746611 -151230,292.6740518121052 -151260,292.6740359114318 -151290,292.67402041420144 -151320,292.6740054615666 -151350,292.67399119425534 -151380,292.67397775257166 -151410,292.67396527639625 -151440,292.673953905187 -151470,292.6739437779795 -151500,292.67393503338786 -151530,292.67393576201056 -151560,292.67393758203 -151590,292.67394094873475 -151620,292.6739461056062 -151650,292.67395322502824 -151680,292.6739624553823 -151710,292.6739739367616 -151740,292.67398780621534 -151770,292.67400419949826 -151800,292.67402325165546 -151830,292.6740412116491 -151860,292.674061178438 -151890,292.6740839094003 -151920,292.6741097461341 -151950,292.6741388909519 -151980,292.67417149941497 -152010,292.6742077112104 -152040,292.6742476604532 -152070,292.6742914791252 -152100,292.6743392982217 -152130,292.67437440006466 -152160,292.6744124233081 -152190,292.6744544271128 -152220,292.67450085104804 -152250,292.6745519272636 -152280,292.67460781842846 -152310,292.67466866375656 -152340,292.674734594365 -152370,292.6748057383987 -152400,292.6748822227404 -152430,292.67493441899694 -152460,292.6749904499307 -152490,292.6750516760004 -152520,292.6751186345443 -152550,292.67519158744096 -152580,292.6752707043898 -152610,292.6753561240657 -152640,292.67544797452496 -152670,292.6755463800144 -152700,292.67565146324364 -152730,292.67572071740955 -152760,292.675794717728 -152790,292.67587512531543 -152820,292.6759625750257 -152850,292.6760573583426 -152880,292.6761596519151 -152910,292.6762695938131 -152940,292.6763873089712 -152970,292.6765129176789 -153000,292.6766465384141 -153030,292.6767328131024 -153060,292.6768247431688 -153090,292.6769242895996 -153120,292.67703218446286 -153150,292.677148748709 -153180,292.6772741658531 -153210,292.6774085732939 -153240,292.6775520927848 -153270,292.6777048406009 -153300,292.67786693093177 -153330,292.6779701834006 -153360,292.67807999778523 -153390,292.6781986340092 -153420,292.67832692100666 -153450,292.6784652090421 -153480,292.6786136884091 -153510,292.6787724957702 -153540,292.67894174963953 -153570,292.6791215622223 -153600,292.67931204336566 -153630,292.6794322238348 -153660,292.6795598696359 -153690,292.6796975385542 -153720,292.67984615599573 -153750,292.68000610137227 -153780,292.6801775716653 -153810,292.6803607027361 -153840,292.6805556098032 -153870,292.68076240094854 -153900,292.6809811816244 -153930,292.68111823265224 -153960,292.6812636488761 -153990,292.6814202847251 -154020,292.6815891616368 -154050,292.68177068798974 -154080,292.68196506735967 -154110,292.6821724347419 -154140,292.6823929020044 -154170,292.6826265730544 -154200,292.68287354889924 -154230,292.68302740516486 -154260,292.6831905225096 -154290,292.6833660506478 -154320,292.68355510656244 -154350,292.6837581274043 -154380,292.6839753232466 -154410,292.68420682815434 -154440,292.68445275059184 -154470,292.6847131902421 -154500,292.68498824361944 -154530,292.68515883186035 -154560,292.68533957265623 -154590,292.6855339095072 -154620,292.6857430544097 -154650,292.6859674730792 -154680,292.686207381986 -154710,292.68646291420123 -154740,292.6867341747338 -154770,292.6870212589951 -154800,292.6873242589604 -154830,292.6875114979723 -154860,292.68770977618334 -154890,292.68792282924 -154920,292.6881519635758 -154950,292.6883976732487 -154980,292.6886601810234 -155010,292.68893961891365 -155040,292.68923608842306 -155070,292.689549680646 -155100,292.6898804829749 -155130,292.69008428363685 -155160,292.6903000048884 -155190,292.6905316727442 -155220,292.69078068745284 -155250,292.6910475711797 -155280,292.69133255287795 -155310,292.691635763441 -155340,292.69195730081896 -155370,292.69229725174574 -155400,292.6926556989894 -155430,292.69287596430115 -155460,292.69310902591974 -155490,292.69335919831144 -155520,292.6936279748735 -155550,292.69391590563026 -155580,292.69422322561434 -155610,292.6945500645366 -155640,292.69489651674684 -155670,292.69526266457734 -155700,292.69564858613245 -155730,292.6958852112584 -155760,292.6961355023186 -155790,292.696404060177 -155820,292.6966924706686 -155850,292.69700131141525 -155880,292.6973308234168 -155910,292.69768113514 -155940,292.6980523372893 -155970,292.69844450775645 -156000,292.69885771994456 -156030,292.69911059226354 -156060,292.69937799364016 -156090,292.69966480914604 -156120,292.6999727162993 -156150,292.7003023200441 -156180,292.70065386723303 -156210,292.70102748502745 -156240,292.7014232604437 -156270,292.70184126689526 -156300,292.7022815730496 -156330,292.7025505722075 -156360,292.7028349566318 -156390,292.70313989327644 -156420,292.70346715054416 -156450,292.7038173604134 -156480,292.7041907754722 -156510,292.704587521516 -156540,292.70500768183126 -156570,292.7054513253188 -156600,292.70591851587733 -156630,292.70620351384486 -156660,292.70650474596533 -156690,292.70682765861534 -156720,292.7071741102407 -156750,292.7075447595536 -156780,292.7079398647569 -156810,292.70835955022045 -156840,292.7088038954612 -156870,292.7092729648344 -156900,292.70976681743974 -156930,292.71006767857307 -156960,292.7103856150196 -156990,292.71072634998615 -157020,292.71109183107706 -157050,292.7114827434245 -157080,292.71189935072374 -157110,292.7123417758594 -157140,292.71281009454145 -157170,292.7133043665487 -157200,292.71382464615385 -157230,292.7141412272589 -157260,292.71447571671087 -157290,292.71483411182254 -157320,292.71521844842977 -157350,292.7156294377587 -157380,292.7160673488714 -157410,292.71653230310886 -157440,292.7170243723379 -157470,292.7175436117325 -157500,292.7180900707125 -157530,292.71842222111354 -157560,292.71877310437225 -157590,292.7191489890524 -157620,292.71955199825265 -157650,292.71998286895456 -157680,292.7204418754586 -157710,292.72092913750487 -157740,292.7214447230826 -157770,292.7219886827348 -157800,292.7225610610048 -157830,292.722908622616 -157860,292.72327573268 -157890,292.7236689280281 -157920,292.7240904180107 -157950,292.7245409650144 -157980,292.72502084844774 -158010,292.7255301863925 -158040,292.7260690429282 -158070,292.72663746394267 -158100,292.72723548908164 -158130,292.7275982964821 -158160,292.7279814586269 -158190,292.72839177750313 -158220,292.7288315476618 -158250,292.72930155653137 -158280,292.7298020884955 -158310,292.7303332599216 -158340,292.7308951309486 -158370,292.73148774278786 -158400,292.7321111301683 -158430,292.7324890106811 -158460,292.7328880425424 -158490,292.7333152896572 -158520,292.7337731306852 -158550,292.7342623777219 -158580,292.7347833199907 -158610,292.7353360720892 -158640,292.7359206901876 -158670,292.7365372108004 -158700,292.7371856637237 -158730,292.7375784374979 -158760,292.73799314915806 -158790,292.738437121165 -158820,292.73891281515483 -158850,292.7394210675036 -158880,292.73996217213687 -158910,292.7405362418278 -158940,292.74114332875087 -158970,292.7417834647069 -159000,292.7424566745446 -159030,292.7428641546408 -159060,292.7432943487196 -159090,292.74375483431214 -159120,292.7442481548593 -159150,292.7447751706196 -159180,292.7453361800808 -159210,292.74593129413813 -159240,292.7465605609455 -159270,292.7472240075748 -159300,292.7479216539156 -159330,292.74834364639514 -159360,292.7487891181436 -159390,292.7492658981556 -159420,292.74977661046614 -159450,292.75032213880706 -159480,292.7509027860861 -159510,292.7515186612677 -159540,292.7521698084625 -159570,292.7528562500004 -159600,292.7535780008023 -159630,292.7540143048193 -159660,292.75447484221684 -159690,292.75496768972675 -159720,292.7554955507294 -159750,292.756059332009 -159780,292.75665934074925 -159810,292.757295683932 -159840,292.7579684016035 -159870,292.7586775113409 -159900,292.75942302308977 -159930,292.7598734309869 -159960,292.76034881484287 -159990,292.76085749528204 -160020,292.76140225374354 -160050,292.7619840196325 -160080,292.76260310426244 -160110,292.7632596125816 -160140,292.7639535805526 -160170,292.7646850209918 -160200,292.7654539388644 -160230,292.7659182362716 -160260,292.766408240329 -160290,292.7669325115932 -160320,292.76749390823807 -160350,292.76809338184734 -160380,292.7687312477161 -160410,292.7694076087091 -160440,292.77012249668843 -160470,292.7708759197034 -160500,292.77166787773655 -160530,292.77214584367323 -160560,292.7726502347167 -160590,292.7731898472811 -160620,292.773767614915 -160650,292.77438451092775 -160680,292.7750408544459 -160710,292.77573674620163 -160740,292.7764722139414 -160770,292.77724726094374 -160800,292.77806188220825 -160830,292.7785532891881 -160860,292.77907182715484 -160890,292.7796265241932 -160920,292.78022038783 -160950,292.7808544126371 -160980,292.7815289214206 -161010,292.78224401273235 -161040,292.7829997101898 -161070,292.78379601229904 -161100,292.78463290907933 -161130,292.7851375232191 -161160,292.78566996131315 -161190,292.78623947881977 -161220,292.7868491558126 -161250,292.78750000765257 -161280,292.78819236067187 -161310,292.7889263111949 -161340,292.78970187869896 -161370,292.79051905691847 -161400,292.79137783089715 -161430,292.7918954120276 -161460,292.79244149683734 -161490,292.79302556375274 -161520,292.7936507639284 -161550,292.794318133031 -161580,292.7950280007635 -161610,292.79578046117723 -161640,292.7965755295998 -161670,292.79741319499703 -161700,292.7982934374441 -161730,292.7988237392244 -161760,292.799383210843 -161790,292.79998154918303 -161820,292.8006219749801 -161850,292.8013055437139 -161880,292.8020325883011 -161910,292.8028032004749 -161940,292.80361739140653 -161970,292.80447514529817 -162000,292.80537643726603 -162030,292.8059192073009 -162060,292.80649179945027 -162090,292.8071041244382 -162120,292.8077594710487 -162150,292.80845891407205 -162180,292.80920278948 -162210,292.80999118664454 -162240,292.8108241125744 -162270,292.811701546716 -162300,292.8126234592384 -162330,292.8131784391986 -162360,292.8137638793559 -162390,292.8143898995584 -162420,292.815059855073 -162450,292.8157748394889 -162480,292.8165351916734 -162510,292.8173409985942 -162540,292.8181922630947 -162570,292.8190889598753 -162600,292.820031054172 -162630,292.82059797991684 -162660,292.8211959894442 -162690,292.8218354069094 -162720,292.8225196524654 -162750,292.82324983798003 -162780,292.8240263050546 -162810,292.8248491382112 -162840,292.82571833612667 -162870,292.82663386876703 -162900,292.827595696452 -162930,292.82817429815543 -162960,292.82878459243284 -162990,292.82943710283274 -163020,292.83013531276646 -163050,292.830880351851 -163080,292.8316725642593 -163110,292.83251203202786 -163140,292.8333987496671 -163170,292.83433268242334 -163200,292.8353137857189 -163230,292.8359037879974 -163260,292.8365260765578 -163290,292.8371913693328 -163320,292.8379032113341 -163350,292.83866274939044 -163380,292.8394703300824 -163410,292.8403260329216 -163440,292.84122984825507 -163470,292.8421817366259 -163500,292.8431816485799 -163530,292.8437827706244 -163560,292.8444167572921 -163590,292.845094515799 -163620,292.8458196510698 -163650,292.8465933265989 -163680,292.84741589120983 -163710,292.8482874218516 -163740,292.8492079047122 -163770,292.85017729565027 -163800,292.85119554035884 -163830,292.8518074960674 -163860,292.85245287909925 -163890,292.85314278076163 -163920,292.8538808641767 -163950,292.854668308951 -163980,292.85550546598466 -164010,292.8563924096275 -164040,292.85732912191526 -164070,292.85831555404303 -164100,292.8593516468769 -164130,292.8599741449916 -164160,292.86063061722024 -164190,292.8613323336823 -164220,292.8620830139539 -164250,292.8628838531924 -164280,292.86373520420744 -164310,292.8646371387144 -164340,292.865589634605 -164370,292.86659263843416 -164400,292.86764608626925 -164430,292.86827883051456 -164460,292.86894607949466 -164490,292.86965927677744 -164520,292.8704221966225 -164550,292.87123604916894 -164580,292.8721011889685 -164610,292.87301768506745 -164640,292.8739855112245 -164670,292.87500460937963 -164700,292.87607491083185 -164730,292.8767176000556 -164760,292.8773953082129 -164790,292.8781196468731 -164820,292.8788944431831 -164850,292.8797209216879 -164880,292.88059943851226 -164910,292.8815300600009 -164940,292.88251275579154 -164970,292.8835474632371 -165000,292.88463410890097 -165030,292.8852864372177 -165060,292.88597428199984 -165090,292.8867094172915 -165120,292.8874957213054 -165150,292.8883344324095 -165180,292.88922590813223 -165210,292.89017021208497 -165240,292.89116730979924 -165270,292.89221713407056 -165300,292.8933196067616 -165330,292.8939812636981 -165360,292.8946789177283 -165390,292.89542449976693 -165420,292.89622193724665 -165450,292.89707248176904 -165480,292.89797649209595 -165510,292.89893402907546 -165540,292.89994505414893 -165570,292.9010094955865 -165600,292.9021272705874 -165630,292.90279794123086 -165660,292.9035050724635 -165690,292.9042607463923 -165720,292.9050689378008 -165750,292.9059309109284 -165780,292.90684702559963 -165810,292.90781733987006 -165840,292.90884181110954 -165870,292.909920363097 -165900,292.91105290840744 -165930,292.9117322735547 -165960,292.9124485454336 -165990,292.9132139515929 -166020,292.9140325122748 -166050,292.9149055037551 -166080,292.9158332867497 -166110,292.9168159164941 -166140,292.9178533463068 -166170,292.9189454955118 -166200,292.9200922721016 -166230,292.92078000841144 -166260,292.92150508003004 -166290,292.9222798541279 -166320,292.92310839449266 -166350,292.92399198882896 -166380,292.92493099857245 -166410,292.9259254761122 -166440,292.9269753707377 -166470,292.9280805973564 -166500,292.92924105942194 -166530,292.92993683956905 -166560,292.9306703658325 -166590,292.93145413911844 -166620,292.93229226482583 -166650,292.93318604147515 -166680,292.9341358310498 -166710,292.9351416830676 -166740,292.9362035428129 -166770,292.9373213208172 -166800,292.9384949160415 -166830,292.9391984088721 -166860,292.9399400406617 -166890,292.9407324401021 -166920,292.94157975224965 -166950,292.9424832858228 -166980,292.9434434031802 -167010,292.94446015094485 -167040,292.9455334704224 -167070,292.94666326781066 -167100,292.947849437626 -167130,292.9485603083154 -167160,292.9493096926547 -167190,292.9501103411104 -167220,292.95096643642336 -167250,292.9518792968872 -167280,292.9528492850635 -167310,292.9538764446582 -167340,292.9549607130259 -167370,292.9561019920757 -167400,292.9573001719294 -167430,292.9580180821416 -167460,292.9587748623641 -167490,292.9595833787697 -167520,292.9604478497932 -167550,292.9613696026756 -167580,292.962349000009 -167610,292.96338608256144 -167640,292.9644807837664 -167670,292.9656330012907 -167700,292.9668426209141 -167730,292.9675672289624 -167760,292.96833104488184 -167790,292.9691470444274 -167820,292.97001947971995 -167850,292.9709496863165 -167880,292.9719380266669 -167910,292.972984538582 -167940,292.9740891516057 -167970,292.9752517592114 -168000,292.9764722428911 -168030,292.9772032039014 -168060,292.97797369198275 -168090,292.97879678629675 -168120,292.9796767706265 -168150,292.9806149882093 -168180,292.9816118011803 -168210,292.98266724437497 -168240,292.9837812434815 -168270,292.9849536878304 -168300,292.9861844546823 -168330,292.98692142075663 -168360,292.9876982142892 -168390,292.9885280116232 -168420,292.9894151261653 -168450,292.9903609081935 -168480,292.99136571935605 -168510,292.9924295914966 -168540,292.9935524464827 -168570,292.9947341695548 -168600,292.9959746338005 -168630,292.99671725418284 -168660,292.99749998345504 -168690,292.9983360888706 -168720,292.9992299114065 -168750,293.0001828077392 -168780,293.00119513885767 -168810,293.0022669335986 -168840,293.003398110046 -168870,293.0045885494051 -168900,293.00583812065094 -168930,293.00658604189414 -168960,293.0073743343693 -168990,293.0082163499255 -169020,293.0091164550441 -169050,293.0100760121542 -169080,293.0110953814138 -169110,293.0121745886388 -169140,293.0133135481689 -169170,293.0145121372304 -169200,293.0157702207479 -169230,293.0165230868818 -169260,293.0173165673754 -169290,293.0181640923184 -169320,293.0190700516185 -169350,293.0200358128088 -169380,293.021061735045 -169410,293.0221478411099 -169440,293.0232940416397 -169470,293.0245002099401 -169500,293.0257662069498 -169530,293.0265236596509 -169560,293.02732195050913 -169590,293.028174581463 -169620,293.02908596375704 -169650,293.03005746937765 -169680,293.03108945630703 -169710,293.0321819442843 -169740,293.0333348402844 -169770,293.0345480137529 -169800,293.03582132170885 -169830,293.0365830004705 -169860,293.03738572175024 -169890,293.0382430529088 -169920,293.0391594244281 -169950,293.0401362120948 -169980,293.04117377254744 -170010,293.04227212247184 -170040,293.0434311652262 -170070,293.04465076645795 -170100,293.0459307793345 -170130,293.0466963216389 -170160,293.0475030912882 -170190,293.0483647146083 -170220,293.04928563920964 -170250,293.0502672440245 -170280,293.05130988417784 -170310,293.0524135732944 -170340,293.0535782111613 -170370,293.0548036596922 -170400,293.05608976827256 -170430,293.05685880976296 -170460,293.0576692438033 -170490,293.05853474919894 -170520,293.05945978857227 -170550,293.06044574334453 -170580,293.0614929669584 -170610,293.0626014699708 -170640,293.0637711486459 -170670,293.0650018612288 -170700,293.0662934533949 -170730,293.06706562804914 -170760,293.06787934075777 -170790,293.0687483162952 -170820,293.0696770301717 -170850,293.0706668656404 -170880,293.071718174293 -170910,293.07283096361385 -170940,293.0740051263934 -170970,293.07524051727574 -171000,293.0765369782997 -171030,293.07731191860444 -171060,293.07812852269814 -171090,293.0790005547921 -171120,293.0799325011544 -171150,293.0809257462113 -171180,293.08198063953665 -171210,293.0830971855386 -171240,293.0842752735847 -171270,293.0855147547874 -171300,293.0868154676241 -171330,293.0875928047497 -171360,293.0884119115692 -171390,293.0892865851797 -171420,293.0902213204717 -171450,293.09121750238603 -171480,293.09227547831216 -171510,293.09339524957966 -171540,293.0945767021862 -171570,293.0958196837833 -171600,293.0971240293637 -171630,293.09790339333983 -171660,293.0987246130346 -171690,293.0996015118644 -171720,293.10053859120274 -171750,293.10153723584585 -171780,293.10259779083344 -171810,293.10372025441615 -171840,293.10490450927574 -171870,293.1061503996754 -171900,293.1074577572017 -171930,293.1082387770932 -171960,293.10906171880714 -171990,293.1099404254997 -172020,293.1108794028855 -172050,293.11188003495664 -172080,293.112942664239 -172110,293.11406728590487 -172140,293.11525377937625 -172170,293.11650198560204 -172200,293.11781173284294 -172230,293.11859403692665 -172260,293.11941830898417 -172290,293.12029840532284 -172320,293.1212388338536 -172350,293.1222409771061 -172380,293.1233051749292 -172410,293.1244314194194 -172440,293.12561958679606 -172470,293.12686951476945 -172500,293.1281810283561 -172530,293.1289642442977 -172560,293.12978945438994 -172590,293.13067052149654 -172620,293.13161195357924 -172650,293.1326151310472 -172680,293.1336803909105 -172710,293.1348077221936 -172740,293.1359969979721 -172770,293.13724805279503 -172800,293.13856070851807 diff --git a/testing/references/testcase2/kpis_javascript.csv b/testing/references/testcase2/kpis_javascript.csv deleted file mode 100644 index b6e6f9f5c..000000000 --- a/testing/references/testcase2/kpis_javascript.csv +++ /dev/null @@ -1,10 +0,0 @@ -keys,value -cost_tot,0.4774544132827522 -emis_tot,1.1936360332068805 -ener_tot,2.387272066413761 -idis_tot,0.0 -pdih_tot, -pele_tot,0.0856041401120246 -pgas_tot, -tdis_tot,0.2857532463283694 -time_rat,0.0004048521195848 diff --git a/testing/references/testcase2/results_javascript.csv b/testing/references/testcase2/results_javascript.csv deleted file mode 100644 index 329d20ce2..000000000 --- a/testing/references/testcase2/results_javascript.csv +++ /dev/null @@ -1,5762 +0,0 @@ -time,TRooAir_y -0,293.15 -30,293.0458064741339 -60,292.9879963811965 -90,292.9731436991052 -120,292.9978050200635 -150,293.0589009407512 -180,293.154003696602 -210,293.28005627128573 -240,293.4332634324118 -270,293.61017941537614 -300,293.8074024795358 -330,294.02191448566475 -360,294.250727741099 -390,294.4912591956054 -420,294.74106616469896 -450,294.99791266740675 -480,295.1893534375216 -510,295.18888389958846 -540,295.1854951978506 -570,295.1861978604206 -600,295.18508002091755 -630,295.179116602188 -660,295.179433718917 -690,295.17983682508174 -720,295.176268890495 -750,295.1786799057843 -780,295.17423023022894 -810,295.17526673834027 -840,295.1719336636823 -870,295.1780862684444 -900,295.16971791905246 -930,295.1696409899047 -960,295.17600368083447 -990,295.1689443527974 -1020,295.1693460320666 -1050,295.1718479679676 -1080,295.17392098671723 -1110,295.17039149461783 -1140,295.16877699216724 -1170,295.1723893947884 -1200,295.16442112597707 -1230,295.1627567316887 -1260,295.1666117993792 -1290,295.16360344947145 -1320,295.16512297447963 -1350,295.15941841076904 -1380,295.16793951998426 -1410,295.1682849527476 -1440,295.1611533414 -1470,295.15650712154775 -1500,295.1456304794553 -1530,295.1310384876916 -1560,295.11562280961385 -1590,295.1021488626981 -1620,295.092823625425 -1650,295.0889545738248 -1680,295.09083846461414 -1710,295.09779700386923 -1740,295.1083383093754 -1770,295.1205129644044 -1800,295.1322613999976 -1830,295.14177542242743 -1860,295.1477778577009 -1890,295.1496867130944 -1920,295.1476538454436 -1950,295.14243900512486 -1980,295.1353303601025 -2010,295.1277080165594 -2040,295.1209990527077 -2070,295.11631262946145 -2100,295.1143346859216 -2130,295.115225616494 -2160,295.11866788975567 -2190,295.12394572799224 -2220,295.1300949570892 -2250,295.1360543746656 -2280,295.140957827554 -2310,295.1441624944358 -2340,295.1453406400666 -2370,295.1445260763723 -2400,295.14210282502296 -2430,295.1386683991031 -2460,295.13495025490204 -2490,295.1316538936078 -2520,295.12932813574906 -2550,295.1283273691607 -2580,295.1287581117928 -2610,295.13047021136964 -2640,295.13311892721225 -2670,295.13622131019906 -2700,295.1392656284282 -2730,295.14179866726465 -2760,295.1434905733339 -2790,295.144179549214 -2820,295.1438859823608 -2850,295.14278971241833 -2880,295.14118077236645 -2910,295.13941144041144 -2940,295.137831144917 -2970,295.1367193512381 -3000,295.13624872652343 -3030,295.13647790397795 -3060,295.1373346065863 -3090,295.13865317433675 -3120,295.14020859114555 -3150,295.1417482278 -3180,295.14304691333075 -3210,295.1439417281553 -3240,295.1443521827806 -3270,295.14428715744447 -3300,295.14381525687565 -3330,295.14308515056734 -3360,295.14226746266525 -3390,295.1415313738096 -3420,295.14101402227664 -3450,295.1408059283131 -3480,295.14093651296326 -3510,295.1413744473144 -3540,295.14204109076974 -3570,295.1428242242624 -3600,295.1436041657491 -3630,295.14427460334406 -3660,295.1447530527588 -3690,295.1449995248331 -3720,295.14501254083854 -3750,295.1448295881884 -3780,295.14451891021093 -3810,295.1441606444436 -3840,295.1438358424098 -3870,295.1436109732278 -3900,295.1435308163881 -3930,295.1436114955135 -3960,295.1438394736896 -3990,295.1441791376261 -4020,295.14457713256604 -4050,295.14498001638333 -4080,295.1453341066968 -4110,295.14559687597745 -4140,295.1457469667922 -4170,295.1457851925357 -4200,295.1457296719776 -4230,295.1456083092596 -4260,295.1454599877805 -4290,295.14532275938416 -4320,295.145229299744 -4350,295.1452025816712 -4380,295.1452527887293 -4410,295.1453764680781 -4440,295.1455580860783 -4470,295.1457735357132 -4500,295.1459948171373 -4530,295.1461949947696 -4560,295.146352577845 -4590,295.1464546441801 -4620,295.1464982923243 -4650,295.1464903175402 -4680,295.14644530914995 -4710,295.14638261188645 -4740,295.14632274604685 -4770,295.1462839226828 -4800,295.1462792228392 -4830,295.14631485387275 -4860,295.1463896841531 -4890,295.1464960295494 -4920,295.1466214630928 -4950,295.1467512491887 -4980,295.1468709830923 -5010,295.1469689470312 -5040,295.1470378324699 -5070,295.14707559372727 -5100,295.1470853616669 -5130,295.1470745080094 -5160,295.1470530842065 -5190,295.14703194411607 -5220,295.14702088683487 -5250,295.1470271252874 -5280,295.14705430734864 -5310,295.14710220636334 -5340,295.1471670776388 -5370,295.1472425675799 -5400,295.1473209799537 -5430,295.1473946606524 -5460,295.1474572622176 -5490,295.1475046887975 -5520,295.147535591383 -5550,295.1475513682148 -5580,295.1475557108081 -5610,295.1475538078935 -5640,295.14755136695885 -5670,295.1475536301619 -5700,295.14756454782304 -5730,295.1475862332596 -5760,295.1476187660366 -5790,295.1476603475785 -5820,295.14770775448284 -5850,295.1477569901255 -5880,295.14780401051905 -5910,295.1478453982931 -5940,295.1478788776163 -5970,295.1479035979968 -6000,295.1479201590507 -6030,295.14793039346085 -6060,295.1479369628452 -6090,295.14794285410943 -6120,295.14795085800506 -6150,295.1479631249128 -6180,295.14798086364226 -6210,295.148004220737 -6240,295.1480323452416 -6270,295.1480636129363 -6300,295.14809595982763 -6330,295.14812726074734 -6360,295.14815568674373 -6390,295.14817998393187 -6420,295.1481996341963 -6450,295.1482148809511 -6480,295.1482266268643 -6510,295.1482362310519 -6540,295.1482452475919 -6570,295.14825515344535 -6600,295.14826711164113 -6630,295.1482818059509 -6660,295.1482993684603 -6690,295.1483194043102 -6720,295.1483411014605 -6750,295.1483634002828 -6780,295.1483851899843 -6810,295.1484054971683 -6840,295.14842363601605 -6870,295.1484392984511 -6900,295.14845257436804 -6930,295.14846390439067 -6960,295.1484739785738 -6990,295.1484836022863 -7020,295.14849355417016 -7050,295.1485044603131 -7080,295.1485167040839 -7110,295.14853038356694 -7140,295.1485453196724 -7170,295.1485611093633 -7200,295.1485772114494 -7230,295.14859304823034 -7260,295.1486081045882 -7290,295.1486220082072 -7320,295.14863457956665 -7350,295.1486458459904 -7380,295.1486560203836 -7410,295.1486654510797 -7440,295.14867455348315 -7470,295.14868373631924 -7500,295.1486933351314 -7530,295.1487035634117 -7560,295.14871448797066 -7590,295.14872603059393 -7620,295.1487379935172 -7650,295.1487501025209 -7680,295.1487620590516 -7710,295.14877359200204 -7740,295.14878450062207 -7770,295.14879468220994 -7800,295.14880414128004 -7830,295.14881298024034 -7860,295.1488213746184 -7890,295.14882953845427 -7920,295.14883768599094 -7950,295.14884599660144 -7980,295.14885458842826 -8010,295.14886350434193 -8040,295.1488727115039 -8070,295.14888211346715 -8100,295.1488915717667 -8130,295.14890093263654 -8160,295.1489100540104 -8190,295.14891882831915 -8220,295.1489271976713 -8250,295.14893515954617 -8280,295.1489427628545 -8310,295.14895009582574 -8340,295.148957268409 -8370,295.1489643925563 -8400,295.14897156382403 -8430,295.1489788472223 -8460,295.1489862692937 -8490,295.1489938172086 -8520,295.1490014444362 -8550,295.149009081503 -8580,295.14901664963367 -8610,295.14902407477814 -8640,295.1490312996748 -8670,295.14903829212176 -8700,295.1490450484078 -8730,295.1490515917438 -8760,295.14905796637305 -8790,295.149064228698 -8820,295.1490704371402 -8850,295.1490766425157 -8880,295.1490828804724 -8910,295.1490891670685 -8940,295.14909549796704 -8970,295.1491018511041 -9000,295.14910819215186 -9030,295.1491144817125 -9060,295.1491206829844 -9090,295.14912676863304 -9120,295.1491327257906 -9150,295.1491385584511 -9180,295.14914428698603 -9210,295.14914994498974 -9240,295.1491555741041 -9270,295.14916121777253 -9300,295.14916691500247 -9330,295.14917269514683 -9360,295.1491785744781 -9390,295.1491845549761 -9420,295.1491906253464 -9450,295.14919676391264 -9480,295.1492029427317 -9510,295.14920913212603 -9540,295.14921530482815 -9570,295.14922143908234 -9600,295.1492275203139 -9630,295.14923354128564 -9660,295.1492395009353 -9690,295.1492454023506 -9720,295.1492512503027 -9750,295.1492570488958 -9780,295.14926279973065 -9810,295.1492685008456 -9840,295.1492741465335 -9870,295.1492797279733 -9900,295.14928523448555 -9930,295.1492906551307 -9960,295.1492959803413 -9990,295.1493012032968 -10020,295.1493063208204 -10050,295.149311333677 -10080,295.1493162462589 -10110,295.1493210657528 -10140,295.1493258009594 -10170,295.14933046098054 -10200,295.14933505399483 -10230,295.14933958630985 -10260,295.1493440618184 -10290,295.1493484819096 -10320,295.14935284580724 -10350,295.14935715123937 -10380,295.149361395298 -10410,295.149365575328 -10440,295.1493696896945 -10470,295.1493737383102 -10500,295.1493777228545 -10530,295.149381646674 -10560,295.14938551440565 -10590,295.14938933141025 -10620,295.1493931031223 -10650,295.1493968344333 -10680,295.14940052920605 -10710,295.1494041899893 -10740,295.1494078179629 -10770,295.1494114131038 -10800,295.1494149745256 -10830,295.1494185016141 -10860,295.1494219946076 -10890,295.1494254538805 -10920,295.1494288794803 -10950,295.14943227111087 -10980,295.1494356283643 -11010,295.14943895100345 -11040,295.14944223918667 -11070,295.14944549358927 -11100,295.1494487154132 -11130,295.14945190629595 -11160,295.1494550681464 -11190,295.1494582029404 -11220,295.1494613125156 -11250,295.1494643983985 -11280,295.149467461691 -11310,295.1494705030299 -11340,295.1494735226203 -11370,295.14947652033294 -11400,295.14947949584126 -11430,295.14948244877627 -11460,295.1494853788695 -11490,295.149488286063 -11520,295.14949117057137 -11550,295.14949403289006 -11580,295.14949687375224 -11610,295.14949969404745 -11640,295.14950249471764 -11670,295.1495052766513 -11700,295.1495080405921 -11730,295.1495107870768 -11760,295.1495135164109 -11790,295.1495162286816 -11820,295.1495189238045 -11850,295.149521601592 -11880,295.149524261832 -11910,295.1495269043616 -11940,295.1495295291255 -11970,295.1495321362098 -12000,295.1495347258484 -12030,295.1495372984031 -12060,295.1495398543234 -12090,295.1495423940937 -12120,295.1495449181786 -12150,295.149547426975 -12180,295.1495499207784 -12210,295.1495523997685 -12240,295.14955486401374 -12270,295.1495573134937 -12300,295.14955974813324 -12330,295.1495621678421 -12360,295.1495645725532 -12390,295.14956696225323 -12420,295.1495693370014 -12450,295.14957169693355 -12480,295.1495740422534 -12510,295.1495763732124 -12540,295.1495786900837 -12570,295.1495809931332 -12600,295.1495832825949 -12630,295.1495855586531 -12660,295.14958782143333 -12690,295.14959007100435 -12720,295.14959230738833 -12750,295.149594530578 -12780,295.14959674055655 -12810,295.14959893731793 -12840,295.1496011208821 -12870,295.1496032913059 -12900,295.1496054486853 -12930,295.1496075931519 -12960,295.14960972486307 -12990,295.14961184398834 -13020,295.1496139506952 -13050,295.1496160451358 -13080,295.1496181274378 -13110,295.1496201976988 -13140,295.14962225598714 -13170,295.14962430234675 -13200,295.14962633680545 -13230,295.14962835938536 -13260,295.1496303701127 -13290,295.14963236902645 -13320,295.1496343561839 -13350,295.14963633166235 -13380,295.14963829555734 -13410,295.149640247978 -13440,295.14964218904026 -13470,295.1496441188597 -13500,295.1496460375444 -13530,295.14964794518994 -13560,295.1496498418769 -13590,295.1496517276704 -13620,295.1496536026227 -13650,295.14965546677723 -13680,295.1496573201736 -13710,295.14965916285325 -13740,295.1496609948634 -13770,295.1496628162602 -13800,295.1496646271099 -13830,295.14966642748806 -13860,295.14966821747726 -13890,295.1496699971637 -13920,295.1496717666336 -13950,295.14967352596926 -13980,295.14967527524703 -14010,295.14967701453514 -14040,295.149678743894 -14070,295.14968046337674 -14100,295.149682173032 -14130,295.14968387290565 -14160,295.14968556304444 -14190,295.1496872434974 -14220,295.149688914318 -14250,295.14969057556465 -14280,295.1496922273003 -14310,295.14969386959154 -14340,295.14969550250686 -14370,295.1496971261146 -14400,295.1496987404812 -14430,295.1497003456998 -14460,295.14970194194933 -14490,295.1497035295288 -14520,295.1497051088399 -14550,295.14970668032976 -14580,295.1497082444212 -14610,295.1497098014533 -14640,295.149711351645 -14670,295.1497128950881 -14700,295.14971443176586 -14730,295.1497159615922 -14760,295.1497174844617 -14790,295.14971900030133 -14820,295.1497205091142 -14850,295.14972201100875 -14880,295.14972350620866 -14910,295.14972499504427 -14940,295.14972647792723 -14970,295.1497279553139 -15000,295.1497294276645 -15030,295.1497308954049 -15060,295.14973235889653 -15090,295.1497338184185 -15120,295.1497352741649 -15150,295.1497367262541 -15180,295.14973817474976 -15210,295.1497396196871 -15240,295.1497410611008 -15270,295.14974249904884 -15300,295.14974393362945 -15330,295.14974536498823 -15360,295.1497467933156 -15390,295.1497482188355 -15420,295.1497496417881 -15450,295.1497510624098 -15480,295.1497524809141 -15510,295.1497538974766 -15540,295.14975531222615 -15570,295.1497567252426 -15600,295.14975813656235 -15630,295.1497595461884 -15660,295.1497609541044 -15690,295.14976236028906 -15720,295.1497637647292 -15750,295.1497651674285 -15780,295.1497665684127 -15810,295.14976796772856 -15840,295.14976936543866 -15870,295.1497707616133 -15900,295.1497721563203 -15930,295.1497735496157 -15960,295.1497749415357 -15990,295.1497763320921 -16020,295.14977772127105 -16050,295.1497791090356 -16080,295.1497804953308 -16110,295.1497818800907 -16140,295.149783263246 -16170,295.14978464473063 -16200,295.1497860244869 -16230,295.14978740246806 -16260,295.1497887786379 -16290,295.1497901529662 -16320,295.1497915254125 -16350,295.14979289588325 -16380,295.1497942641364 -16410,295.14979562961105 -16440,295.1497969911743 -16470,295.1497983468128 -16500,295.14979969332785 -16530,295.1498010261172 -16560,295.1498023391229 -16590,295.1498036249976 -16620,295.14980487549406 -16650,295.1498060820354 -16680,295.1498072363786 -16710,295.1498083312662 -16740,295.1498093609602 -16770,295.1498103215759 -16800,295.149811211174 -16830,295.14981202961815 -16860,295.149812778255 -16890,295.14981345951736 -16920,295.1498140765704 -16950,295.1498146331177 -16980,295.1498151334322 -17010,295.1498155825981 -17040,295.1498159868647 -17070,295.14981635396003 -17100,295.14981669320974 -17130,295.1498170153608 -17160,295.149817332089 -17190,295.1498176552558 -17220,295.1498179960385 -17250,295.14981836409004 -17280,295.14981876686954 -17310,295.14981920925385 -17340,295.149819693482 -17370,295.1498202194262 -17400,295.1498207851293 -17430,295.149821387509 -17460,295.14982202310904 -17490,295.14982268878043 -17520,295.14982338219494 -17550,295.1498241021293 -17580,295.1498248485007 -17610,295.14982562217574 -17640,295.1498264246096 -17670,295.14982725739566 -17700,295.14982812181165 -17730,295.14982901844223 -17760,295.1498299469368 -17790,295.14983090593466 -17820,295.14983189315745 -17850,295.14983290564226 -17880,295.149833940066 -17910,295.14983499310154 -17940,295.1498360617456 -17970,295.14983714356725 -18000,295.1498382368441 -18030,295.14983934287164 -18060,295.14984046653325 -18090,295.14984161287384 -18120,295.1498427844883 -18150,295.1498439805131 -18180,295.1498451968094 -18210,295.1498464268453 -18240,295.149847662916 -18270,295.1498488974364 -18300,295.14985012408937 -18330,295.1498513386624 -18360,295.14985253946446 -18390,295.14985372729336 -18420,295.14985490499816 -18450,295.1498560767431 -18480,295.1498572471214 -18510,295.149858420278 -18540,295.14985959918545 -18570,295.14986078518024 -18600,295.14986197781326 -18630,295.14986317501246 -18660,295.1498643735043 -18690,295.1498655694014 -18720,295.1498667588462 -18750,295.14986793859754 -18780,295.1498691064703 -18810,295.1498702615659 -18840,295.1498714042748 -18870,295.1498725360692 -18900,295.1498736591389 -18930,295.1498747759429 -18960,295.1498758887592 -18990,295.1498769993058 -19020,295.1498781084905 -19050,295.1498792163195 -19080,295.1498803219649 -19110,295.1498814239681 -19140,295.1498825205325 -19170,295.1498836098489 -19200,295.14988469039866 -19230,295.14988576118384 -19260,295.14988682185486 -19290,295.1498878727214 -19320,295.1498889146559 -19350,295.14988994891337 -19380,295.1498909769064 -19410,295.1498919999737 -19440,295.1498930191834 -19470,295.1498940351986 -19500,295.1498950482232 -19530,295.1498960580288 -19560,295.14989706405294 -19590,295.14989806554405 -19620,295.1498990617267 -19650,295.1499000519571 -19680,295.1499010358445 -19710,295.1499020133206 -19740,295.1499029846509 -19770,295.1499039503894 -19800,295.1499049112907 -19830,295.14990586819675 -19860,295.1499068219185 -19890,295.14990777313363 -19920,295.1499087223152 -19950,295.1499096696998 -19980,295.1499106152981 -20010,295.14991155894137 -20040,295.1499125003536 -20070,295.1499134392351 -20100,295.1499143753424 -20130,295.149915308552 -20160,295.1499162388981 -20190,295.1499171665808 -20220,295.14991809194595 -20250,295.1499190154418 -20280,295.1499199375812 -20310,295.1499208590388 -20340,295.14992178119576 -20370,295.1499227075406 -20400,295.1499236461289 -20430,295.14992461271976 -20460,295.1499256334728 -20490,295.14992674566446 -20520,295.1499279951948 -20550,295.14992943062384 -20580,295.1499310947503 -20610,295.14993301569393 -20640,295.1499351997243 -20670,295.1499376276333 -20700,295.1499402555404 -20730,295.1499430199769 -20760,295.14994584620416 -20790,295.14994865816016 -20820,295.149951388238 -20850,295.14995398526594 -20880,295.1499564194891 -20910,295.149958683952 -20940,295.14996079232617 -20970,295.14996277380845 -21000,295.14996466611933 -21030,295.14996650779364 -21060,295.14996833087747 -21090,295.1499701549319 -21120,295.1499719829828 -21150,295.14997379982015 -21180,295.149975572838 -21210,295.1499772553668 -21240,295.1499787921386 -21270,295.1499801261581 -21300,295.14998120594305 -21330,295.1499819919636 -21360,295.14998246123264 -21390,295.1499826093486 -21420,295.149982449778 -21450,295.14998201065924 -21480,295.14998132981583 -21510,295.14998044891206 -21540,295.14997940774776 -21570,295.1499782395778 -21600,295.1499769680988 -21630,295.1499769526856 -21660,295.14998146242334 -21690,295.1499940410726 -21720,295.15001713985 -21750,295.1500514708842 -21780,295.1500959419393 -21810,295.1501479763756 -21840,295.1502040646087 -21870,295.15026041888314 -21900,295.1503136140806 -21930,295.1503611122357 -21960,295.15040159548545 -21990,295.15043506937263 -22020,295.15046273923923 -22050,295.15048669959333 -22080,295.1505095038041 -22110,295.150533695481 -22140,295.15056138224105 -22170,295.15059391863315 -22200,295.1506317412075 -22230,295.1506743698784 -22260,295.15072056104725 -22290,295.15076857398003 -22320,295.1508164968078 -22350,295.1508625729959 -22380,295.15090547425774 -22410,295.150944479382 -22440,295.15097953747755 -22470,295.15101121510145 -22500,295.1510405459777 -22530,295.1510688165147 -22560,295.151097328088 -22590,295.1511271773786 -22620,295.15115908952004 -22650,295.15119332709435 -22680,295.1512296834948 -22710,295.1512675544957 -22740,295.1513060694701 -22770,295.15134425542936 -22800,295.1513812039409 -22830,295.15141621307697 -22860,295.1514488830704 -22890,295.15147915383835 -22920,295.15150728316524 -22950,295.1515337742485 -22980,295.15155926902247 -23010,295.15158442870427 -23040,295.15160982051657 -23070,295.1516358292449 -23100,295.1516626067188 -23130,295.151690064343 -23160,295.1517179061344 -23190,295.1517456932619 -23220,295.1517729266915 -23250,295.1517991327118 -23280,295.151823936954 -23310,295.1518471156577 -23340,295.1518686176624 -23370,295.1518885560017 -23400,295.1519071731016 -23430,295.15192478915657 -23460,295.1519417439212 -23490,295.1519583397516 -23520,295.15197479408226 -23550,295.15199120874354 -23580,295.1520075605465 -23610,295.1520237133899 -23640,295.1520394482027 -23670,295.1520545042196 -23700,295.1520686237267 -23730,295.1520815925341 -23760,295.1520932698303 -23790,295.15210360338415 -23820,295.1521126288354 -23850,295.1521204545547 -23880,295.15212723580936 -23910,295.15213314342395 -23940,295.15213833258383 -23970,295.1521429169276 -24000,295.1521469517557 -24030,295.1521504283491 -24060,295.1521532793776 -24090,295.1521553935818 -24120,295.1521566364546 -24150,295.15215687302447 -24180,295.152155988788 -24210,295.15215390548644 -24240,295.152150589558 -24270,295.15214605249486 -24300,295.1521403437385 -24330,295.1521335379267 -24360,295.15212571908194 -24390,295.1521169646184 -24420,295.1521073318247 -24450,295.1520968488465 -24480,295.1520855112721 -24510,295.15207328440755 -24540,295.1520601103772 -24570,295.1520459184618 -24600,295.1520306366887 -24630,295.15201420264896 -24660,295.1519965718191 -24690,295.1519777222241 -24720,295.1519576549823 -24750,295.1519363909935 -24780,295.1519139646466 -24810,295.15189041584114 -24840,295.15186578178503 -24870,295.15184008994345 -24900,295.1518133532051 -24930,295.15178556787635 -24960,295.15175671459133 -24990,295.15172676173984 -25020,295.1516956706289 -25050,295.1516634013779 -25080,295.1516299185075 -25110,295.15159519532534 -25140,295.1515592164839 -25170,295.1515219784442 -25200,295.15148348794514 -25230,295.15144431407447 -25260,295.1514058764261 -25290,295.151369818766 -25320,295.15133744176944 -25350,295.1513093942304 -25380,295.1512855880317 -25410,295.1512652736124 -25440,295.151247223854 -25470,295.15122997992165 -25500,295.1512121129219 -25530,295.1511924576486 -25560,295.1511702827039 -25590,295.1511453744876 -25620,295.1511180285426 -25650,295.15108895756185 -25680,295.1510591383441 -25710,295.15102962818565 -25740,295.15100138366006 -25770,295.1509751115452 -25800,295.1509511738111 -25830,295.1509295577821 -25860,295.1509099107212 -25890,295.15089162830174 -25920,295.15087397662 -25950,295.1508562254982 -25980,295.15083776995124 -26010,295.150818220671 -26040,295.1507974511762 -26070,295.1507755974999 -26100,295.15075301449417 -26130,295.1507301996564 -26160,295.1507076998292 -26190,295.1506860176735 -26220,295.1506655335419 -26250,295.15064645469533 -26280,295.1506288311607 -26310,295.15061246700145 -26340,295.1505970376736 -26370,295.15058220913687 -26400,295.15056764226864 -26430,295.1505531248132 -26460,295.1505385128639 -26490,295.1505237661577 -26520,295.15050896490663 -26550,295.1504942911036 -26580,295.150479990401 -26610,295.15046632654986 -26640,295.1504535352342 -26670,295.1504417835035 -26700,295.15043114144845 -26730,295.15042157129704 -26760,295.1504129359444 -26790,295.15040502499227 -26820,295.1503975931042 -26850,295.15039040332 -26880,295.150383266972 -26910,295.1503760736073 -26940,295.150368806455 -26970,295.15036154175306 -27000,295.1503544323034 -27030,295.1503477343212 -27060,295.1503418788156 -27090,295.1503374864066 -27120,295.15033528766907 -27150,295.1503359834855 -27180,295.1503401034616 -27210,295.150347905358 -27240,295.15035933477765 -27270,295.1503740458121 -27300,295.1503914716784 -27330,295.1504109277195 -27360,295.1504317236535 -27390,295.15045321369007 -27420,295.1504748331993 -27450,295.15049619574893 -27480,295.15051724821046 -27510,295.1505384214251 -27540,295.15056070640514 -27570,295.15058561099306 -27600,295.1506149826665 -27630,295.1506507097213 -27660,295.1506943282033 -27690,295.1507465763118 -27720,295.1508069795354 -27750,295.150873851006 -27780,295.1509447154941 -27810,295.1510169033411 -27840,295.151088094624 -27870,295.1511567086294 -27900,295.1512221061006 -27930,295.15128460764606 -27960,295.15134535113424 -27990,295.1514060275649 -28020,295.151468548654 -28050,295.1515347059544 -28080,295.1516058781769 -28110,295.15168283094624 -28140,295.1517656343049 -28170,295.1518537017289 -28200,295.1519459341039 -28230,295.1520409362261 -28260,295.1521372641239 -28290,295.1522336598096 -28320,295.1523292356716 -28350,295.1524235821287 -28380,295.15251678705016 -28410,295.15260937102244 -28440,295.15270222851825 -28470,295.1527966044927 -28500,295.1528938966927 -28530,295.15299525281443 -28560,295.1531011052743 -28590,295.15321082954165 -28620,295.1533226457664 -28650,295.1534337958649 -28680,295.1535409591368 -28710,295.15364082446706 -28740,295.1537307130007 -28770,295.15380914032056 -28800,295.153876221454 -28830,295.1841306143823 -28860,295.20532862955497 -28890,295.21478030449623 -28920,295.2123905378336 -28950,295.19965422229257 -28980,295.17952816605816 -29010,295.15607515504604 -29040,295.1335566978833 -29070,295.11563593994435 -29100,295.1049005655703 -29130,295.1024741635739 -29160,295.1080043679108 -29190,295.11984937456486 -29220,295.1354769942617 -29250,295.1519772837983 -29280,295.16658279623374 -29310,295.17707050937975 -29340,295.1821552904148 -29370,295.18152933900313 -29400,295.17589246583447 -29430,295.16670074597744 -29460,295.1558415460348 -29490,295.1453073501915 -29520,295.1368443857217 -29550,295.1316884688964 -29580,295.1304099040593 -29610,295.1328966113625 -29640,295.138382256341 -29670,295.14569501447454 -29700,295.15347948712434 -29730,295.16042758433537 -29760,295.1654850535462 -29790,295.1680169737022 -29820,295.16786134468697 -29850,295.1653309394981 -29880,295.16107697412895 -29910,295.15601211283047 -29940,295.15106548326526 -29970,295.1470179367756 -30000,295.1444913043227 -30030,295.14378638665715 -30060,295.1448597977724 -30090,295.1474074478921 -30120,295.15086760498514 -30150,295.1545932049325 -30180,295.15794010845894 -30210,295.1604209681439 -30240,295.16171883579466 -30270,295.16172494710713 -30300,295.1605607832382 -30330,295.1585481398126 -30360,295.1561045322733 -30390,295.15366765197683 -30420,295.15169736877203 -30450,295.1504396364997 -30480,295.1500598573576 -30510,295.1505275005694 -30540,295.1517211369867 -30570,295.1533762072285 -30600,295.15516972880255 -30630,295.1567935096496 -30660,295.1579968960874 -30690,295.1586214112914 -30720,295.1586177949914 -30750,295.1580459114611 -30780,295.15705446628743 -30810,295.15584827619847 -30840,295.15464773851977 -30870,295.15365246203174 -30900,295.1530092538571 -30930,295.1527928335187 -30960,295.15299903846955 -30990,295.1535554832774 -31020,295.1543364279923 -31050,295.15519159635886 -31080,295.1559690202308 -31110,295.1565404326645 -31140,295.1568344314581 -31170,295.1568087982205 -31200,295.1564968913935 -31230,295.15601726131774 -31260,295.1554232697192 -31290,295.1548099310121 -31320,295.1542944501468 -31350,295.1539494546666 -31380,295.1538101467316 -31410,295.15387728957535 -31440,295.154118519194 -31470,295.15447476771425 -31500,295.1548712744607 -31530,295.15523207597863 -31560,295.1554937573172 -31590,295.1556153824976 -31620,295.15558331832324 -31650,295.1554109399537 -31680,295.1551339211526 -31710,295.1548022864728 -31740,295.1544707701063 -31770,295.15418920537826 -31800,295.1539945580212 -31830,295.1539058162835 -31860,295.15392235936315 -31890,295.15402577703287 -31920,295.1541845308814 -31950,295.1543604228221 -31980,295.1545156236744 -32010,295.1546190402256 -32040,295.1546509580095 -32070,295.1546053967427 -32100,295.15448994819 -32130,295.1543233315371 -32160,295.1541312782572 -32190,295.1539415892203 -32220,295.1537792701474 -32250,295.1536625582103 -32280,295.1536004323061 -32310,295.15359189910623 -32340,295.15362702296085 -32370,295.15368937655296 -32400,295.1537593772456 -32430,295.1538184832962 -32460,295.15385281528967 -32490,295.1538547128395 -32520,295.1538228947568 -32550,295.15376183572204 -32580,295.15368051507335 -32610,295.1535906022317 -32640,295.15350431167724 -32670,295.1534323043485 -32700,295.1533820134525 -32730,295.1533566612501 -32760,295.1533550776952 -32790,295.1533722801965 -32820,295.1534006454731 -32850,295.1534311758927 -32880,295.15345582914324 -32910,295.1534683521827 -32940,295.1534651398726 -32970,295.15344559215697 -33000,295.1534123906905 -33030,295.1533694411939 -33060,295.15332241727924 -33090,295.15327818675826 -33120,295.1532420069421 -33150,295.1532162016154 -33180,295.15320319217653 -33210,295.1532028477585 -33240,295.15321307710883 -33270,295.1532303462993 -33300,295.15325051003487 -33330,295.1532693146794 -33360,295.15328344830664 -33390,295.1532907289072 -33420,295.1532904623879 -33450,295.15328345709327 -33480,295.1532717957504 -33510,295.1532584062321 -33540,295.15324651614213 -33570,295.1532390930407 -33600,295.1532383666157 -33630,295.1532455074446 -33660,295.15326050502006 -33690,295.1532822513566 -33720,295.15330880182023 -33750,295.15333775731506 -33780,295.153366695655 -33810,295.15339357678687 -33840,295.1534170561338 -33870,295.1534364998158 -33900,295.15345248002814 -33930,295.1534663427462 -33960,295.1534798422365 -33990,295.1534945150968 -34020,295.1535123823196 -34050,295.1535344283767 -34080,295.15356123496707 -34110,295.15359275697404 -34140,295.1536283546024 -34170,295.1536668759336 -34200,295.15370707186264 -34230,295.1537481533382 -34260,295.153790637493 -34290,295.1538365276718 -34320,295.1538894596791 -34350,295.1539524556469 -34380,295.1540297127939 -34410,295.1541239705865 -34440,295.1542364865035 -34470,295.1543667677056 -34500,295.1545127083252 -34530,295.1546709600814 -34560,295.1548389816253 -34590,295.15503005996163 -34620,295.155280472256 -34650,295.1556349517671 -34680,295.1561109434086 -34710,295.15665243468607 -34740,295.15716948115977 -34770,295.1575936984866 -34800,295.1578804290747 -34830,295.15801451002034 -34860,295.15800969300403 -34890,295.1579030136023 -34920,295.1577470819074 -34950,295.15759904753247 -34980,295.1575107917168 -35010,295.1575207037479 -35040,295.15764766451105 -35070,295.1578895183703 -35100,295.1582265065769 -35130,295.15862395453564 -35160,295.1590424706287 -35190,295.15944148586215 -35220,295.159785536578 -35250,295.16005018207926 -35280,295.1602255257591 -35310,295.1603194934206 -35340,295.16037853972745 -35370,295.16054026247235 -35400,295.1609003789607 -35430,295.1614022538416 -35460,295.1619496683027 -35490,295.1624548742547 -35520,295.1628459726377 -35550,295.16307771746045 -35580,295.163139360646 -35610,295.16304389482343 -35640,295.1628280320748 -35670,295.1625457967329 -35700,295.1622580554748 -35730,295.16202138208035 -35760,295.1618784361923 -35790,295.16185123597995 -35820,295.1619381428039 -35850,295.1621147073821 -35880,295.16233778229343 -35910,295.1625514428258 -35940,295.1626918543597 -35970,295.1626936785078 -36000,295.16264848929944 -36030,295.1627830199548 -36060,295.1631601008982 -36090,295.16378547773724 -36120,295.1646099079226 -36150,295.1655539883908 -36180,295.1666054123137 -36210,295.16776245098634 -36240,295.16885902355216 -36270,295.16977025895113 -36300,295.17057053354426 -36330,295.17138531686186 -36360,295.1723238415257 -36390,295.1734879646356 -36420,295.1749657307562 -36450,295.1767990949258 -36480,295.179040986799 -36510,295.1816965596739 -36540,295.18470867990084 -36570,295.18812466835374 -36600,295.1920604247567 -36630,295.19659451711954 -36660,295.2017883006708 -36690,295.2077000809902 -36720,295.2143968047281 -36750,295.2219297857262 -36780,295.23039090712547 -36810,295.2398580615926 -36840,295.2503848700764 -36870,295.26201035086007 -36900,295.2747608172924 -36930,295.2886493612432 -36960,295.3036728088513 -36990,295.3198230102953 -37020,295.3371472626431 -37050,295.35570564300644 -37080,295.3755458367902 -37110,295.3966985674753 -37140,295.4191809691143 -37170,295.44300060804306 -37200,295.4681581510974 -37230,295.49464886833834 -37260,295.5224635248184 -37290,295.5515994324091 -37320,295.5821050585141 -37350,295.61413221467865 -37380,295.6476985560375 -37410,295.68273348296464 -37440,295.7191756306526 -37470,295.7569760547248 -37500,295.7960736480818 -37530,295.83641210909457 -37560,295.8779523628121 -37590,295.920658677425 -37620,295.96448635287874 -37650,296.0093853495274 -37680,296.0553098672153 -37710,296.0984804732124 -37740,296.1162759944561 -37770,296.12319327589233 -37800,296.12721513438544 -37830,296.1304358270461 -37860,296.13340075020534 -37890,296.1362397005327 -37920,296.1389995451408 -37950,296.1416988554344 -37980,296.14434664924426 -38010,296.1469491733186 -38040,296.14951275819305 -38070,296.05676242808613 -38100,296.00389804209226 -38130,295.9623512140333 -38160,295.9299675732109 -38190,295.90554156853847 -38220,295.8882515744327 -38250,295.87744825740674 -38280,295.8725742445213 -38310,295.8731338436207 -38340,295.8786799175429 -38370,295.88880621150014 -38400,295.9031434183776 -38430,295.92135012246433 -38460,295.94314517020973 -38490,295.9682761229063 -38520,295.9965063530686 -38550,296.0276220734079 -38580,296.0614316555779 -38610,296.0977621575796 -38640,296.116774460614 -38670,296.11863303665086 -38700,296.12042013916056 -38730,296.12215693327994 -38760,296.1238463922932 -38790,296.1254903822081 -38820,296.127090353472 -38850,296.12864811571063 -38880,296.1301652038192 -38910,296.1316422109077 -38940,296.13307870546635 -38970,296.1344739944873 -39000,296.1358280386004 -39030,296.13714138129467 -39060,296.1384159231444 -39090,296.1396557638526 -39120,296.1408681069421 -39150,296.14206224902165 -39180,296.14324670125006 -39210,296.1444232376878 -39240,296.1455869026994 -39270,296.14672556135366 -39300,296.14780575092044 -39330,296.14825272736186 -39360,296.14863241257416 -39390,296.1490169925878 -39420,296.149409880412 -39450,296.1498065801567 -39480,296.1502066322754 -39510,296.15060908693727 -39540,296.151012814728 -39570,296.1514212938001 -39600,296.15185338623627 -39630,296.1522915178082 -39660,296.15272266309154 -39690,296.1531478234309 -39720,296.15356737340664 -39750,296.1539814789508 -39780,296.15439006177706 -39810,296.1547931400807 -39840,296.1551905788091 -39870,296.15558224440923 -39900,296.1559679748897 -39930,296.1563476619506 -39960,296.1567211591295 -39990,296.1570883688014 -40020,296.1574491541362 -40050,296.157803436696 -40080,296.15815109545423 -40110,296.1584920752947 -40140,296.1588262694771 -40170,296.15915364666387 -40200,296.1594741114689 -40230,296.1597876570325 -40260,296.1600941957983 -40290,296.1603937465364 -40320,296.16068622532265 -40350,296.16097167854343 -40380,296.16125005200064 -40410,296.1615213358633 -40440,296.1617855418748 -40470,296.1620426791741 -40500,296.1622927591968 -40530,296.16253579959425 -40560,296.16277182370766 -40590,296.16300085981175 -40620,296.16322294089906 -40650,296.1634381045161 -40680,296.16364639252794 -40710,296.1638478508821 -40740,296.1640425294035 -40770,296.16423048158816 -40800,296.164411764371 -40830,296.1645864378864 -40860,296.16475456522994 -40890,296.1649162122204 -40920,296.16507144716127 -40950,296.1652203406067 -40980,296.165362965128 -41010,296.1654993950854 -41040,296.16562970640354 -41070,296.1657539763511 -41100,296.1658722833271 -41130,296.16598470665235 -41160,296.16609132636887 -41190,296.1661922230452 -41220,296.16628747759034 -41250,296.1663771710765 -41280,296.1664613845688 -41310,296.1665401989651 -41340,296.16661369484456 -41370,296.166681952325 -41400,296.1667450509301 -41430,296.1668030899065 -41460,296.1668562119814 -41490,296.1669045828758 -41520,296.1669483623716 -41550,296.16698770189737 -41580,296.1670227467247 -41610,296.1670536355852 -41640,296.1670805010319 -41670,296.16710347053447 -41700,296.1671226670675 -41730,296.1671382092897 -41760,296.16715021171564 -41790,296.16715878490623 -41820,296.16716403562623 -41850,296.1671660669805 -41880,296.1671649785452 -41910,296.16716086649217 -41940,296.16715382370296 -41970,296.1671439398769 -42000,296.16713130163424 -42030,296.167115992615 -42060,296.16709809357377 -42090,296.1670776824717 -42120,296.1670548345651 -42150,296.1670296224912 -42180,296.1670021163941 -42210,296.1669723838293 -42240,296.16694049009783 -42270,296.16690649819606 -42300,296.1668704688687 -42330,296.1668324607041 -42360,296.1667925302101 -42390,296.1667507318801 -42420,296.1667071182579 -42450,296.1666617400029 -42480,296.1666146459526 -42510,296.16656588318324 -42540,296.1665154970687 -42570,296.1664635313378 -42600,296.16641002812986 -42630,296.16635502804843 -42660,296.16629857021394 -42690,296.16624069231403 -42720,296.16618143065307 -42750,296.1661208201993 -42780,296.1660588946317 -42810,296.1659956863842 -42840,296.1659312266892 -42870,296.16586554562 -42900,296.1657986721305 -42930,296.16573063409584 -42960,296.1656614583494 -42990,296.1655911707207 -43020,296.1655197960704 -43050,296.1654473583254 -43080,296.1653738805124 -43110,296.16529938478965 -43140,296.1652238924791 -43170,296.16514742409663 -43200,296.1650699993811 -43230,296.16499161959314 -43260,296.16491226024306 -43290,296.16483189819473 -43320,296.16475052446447 -43350,296.16466813651124 -43380,296.1645847368435 -43410,296.1644992309212 -43440,296.16441093554107 -43470,296.1643207567553 -43500,296.1642299720182 -43530,296.16413879642 -43560,296.1640471009231 -43590,296.163954875278 -43620,296.1638621246491 -43650,296.16376882950647 -43680,296.1636749962328 -43710,296.1635806561354 -43740,296.1634858420496 -43770,296.1633905851997 -43800,296.16329491919583 -43830,296.163198879172 -43860,296.16310250009565 -43890,296.1630058167401 -43920,296.1629088637648 -43950,296.1628116753693 -43980,296.16271428509833 -44010,296.16261672556936 -44040,296.16251902871954 -44070,296.16242122558896 -44100,296.162323346263 -44130,296.1622254198852 -44160,296.1621274746596 -44190,296.16202953785137 -44220,296.16193163579777 -44250,296.16183379392504 -44280,296.16173603676987 -44310,296.1616383880037 -44340,296.1615408704595 -44370,296.1614435061595 -44400,296.1613463163449 -44430,296.1612493215053 -44460,296.1611525414089 -44490,296.1610559951316 -44520,296.16095970108705 -44550,296.16086367705515 -44580,296.16076794020984 -44610,296.1606725071464 -44640,296.1605773939079 -44670,296.16048261601 -44700,296.16038818846533 -44730,296.16029412580696 -44760,296.1602004421098 -44790,296.1601071510122 -44820,296.1600142657357 -44850,296.159921799104 -44880,296.1598297635608 -44910,296.15973817118703 -44940,296.1596470337169 -44970,296.1595563625528 -45000,296.1594661687798 -45030,296.1593764664787 -45060,296.1592872757301 -45090,296.15919861960623 -45120,296.15911052037467 -45150,296.1590229984931 -45180,296.1589360728303 -45210,296.1588497609259 -45240,296.15876407918563 -45270,296.15867904303644 -45300,296.158594667028 -45330,296.158510964897 -45360,296.1584279496203 -45390,296.1583456334648 -45420,296.15826402803225 -45450,296.1581831443009 -45480,296.1581029926622 -45510,296.158023582955 -45540,296.15794492449675 -45570,296.1578670261119 -45600,296.15778989615904 -45630,296.15771354255503 -45660,296.1576379727987 -45690,296.1575631939918 -45720,296.1574892128596 -45750,296.1574160357696 -45780,296.1573436687419 -45810,296.1572721174928 -45840,296.15720138741585 -45870,296.1571314836109 -45900,296.157049089289 -45930,296.1569534373003 -45960,296.1568617762622 -45990,296.15677416259405 -46020,296.1566897385367 -46050,296.15660811214093 -46080,296.15652887415416 -46110,296.15645184461926 -46140,296.1563768769428 -46170,296.1563038471726 -46200,296.1562326540601 -46230,296.1561632149824 -46260,296.1560954614493 -46290,296.1560293353825 -46320,296.15596478637207 -46350,296.1559017697525 -46380,296.1558402452792 -46410,296.15578017621834 -46440,296.15572152871727 -46470,296.155664271359 -46500,296.1556083748412 -46530,296.15555381173664 -46560,296.1555005563092 -46590,296.15544858436726 -46620,296.15539787314265 -46650,296.155348401188 -46680,296.15530014828795 -46710,296.155253095379 -46740,296.1552072244782 -46770,296.155162518617 -46800,296.1551189617809 -46830,296.1550767590656 -46860,296.1550363698291 -46890,296.154998165591 -46920,296.1549625105131 -46950,296.15492964628766 -46980,296.1548997429827 -47010,296.1548729124552 -47040,296.15484921481493 -47070,296.1548286671712 -47100,296.1548112520525 -47130,296.15479692437515 -47160,296.1547856171374 -47190,296.1547772461027 -47220,296.1547717136417 -47250,296.1547689118727 -47280,296.1547687233567 -47310,296.15477103013325 -47340,296.1547757068529 -47370,296.1547826261792 -47400,296.1547916596418 -47430,296.1548026781918 -47460,296.1548155528349 -47490,296.15483015518583 -47520,296.15484635790403 -47550,296.1548640350284 -47580,296.15488306223006 -47610,296.1549033170004 -47640,296.1549246787843 -47670,296.15494702907154 -47700,296.1549702514523 -47730,296.15499423164545 -47760,296.1550188575038 -47790,296.1550440190028 -47820,296.15506960821386 -47850,296.15509551926885 -47880,296.15512164831466 -47910,296.155147893463 -47940,296.1551741547349 -47970,296.15520033400304 -48000,296.155226334932 -48030,296.1552520629173 -48060,296.15527742502456 -48090,296.1553023299291 -48120,296.155326687857 -48150,296.15535041052635 -48180,296.1553734110913 -48210,296.15539560408774 -48240,296.15541690538055 -48270,296.1554372321141 -48300,296.1554565026641 -48330,296.15547463659334 -48360,296.1554915546081 -48390,296.15550717851926 -48420,296.1555214312046 -48450,296.15553423657434 -48480,296.1555455195396 -48510,296.1555552059831 -48540,296.1555632227329 -48570,296.1555694975388 -48600,296.1555739590517 -48630,296.1555765248745 -48660,296.1555770949815 -48690,296.1555755637048 -48720,296.15557182832254 -48750,296.1555657906454 -48780,296.15555735662025 -48810,296.15554643610045 -48840,296.1555329427022 -48870,296.15551679359 -48900,296.15549790925144 -48930,296.15547621331035 -48960,296.1554516323717 -48990,296.15542409588727 -49020,296.1553935360364 -49050,296.15535988762264 -49080,296.15532307279 -49110,296.1552830593204 -49140,296.15523978037174 -49170,296.1551931766416 -49200,296.155143194585 -49230,296.15508978336123 -49260,296.15503289421883 -49290,296.15497248051804 -49320,296.15490849775045 -49350,296.1548409035258 -49380,296.154769657558 -49410,296.15469472165785 -49440,296.1546160597311 -49470,296.15453363778096 -49500,296.1544474239146 -49530,296.1543573883536 -49560,296.1542635034481 -49590,296.1541657436934 -49620,296.15406408575035 -49650,296.153958508468 -49680,296.1538489929084 -49710,296.1537355223739 -49740,296.1536180824362 -49770,296.1534966609668 -49800,296.153371248169 -49830,296.1532418366108 -49860,296.1531084212588 -49890,296.1529709995127 -49920,296.1528295680984 -49950,296.1526841381451 -49980,296.1525347075138 -50010,296.1523812840034 -50040,296.15222387876565 -50070,296.1520625046624 -50100,296.15189717701475 -50130,296.15172791390614 -50160,296.15155473617614 -50190,296.15137766742004 -50220,296.1511967340168 -50250,296.15101196515656 -50280,296.15082339088286 -50310,296.15063105156105 -50340,296.15043498056053 -50370,296.1502352186683 -50400,296.15003181008234 -50430,296.149825333859 -50460,296.1496169741751 -50490,296.14940790162825 -50520,296.1491991099839 -50550,296.1489914143381 -50580,296.14878546756165 -50610,296.1485817814132 -50640,296.1483807503137 -50670,296.14818267335863 -50700,296.1479877728153 -50730,296.14779621020955 -50760,296.1476080990974 -50790,296.1474235127681 -50820,296.14724249260684 -50850,296.1470650549429 -50880,296.14689119617896 -50910,296.1467208986021 -50940,296.1465541314227 -50970,296.1463908550054 -51000,296.1462310229506 -51030,296.14607458374604 -51060,296.1459214821624 -51090,296.1457716603869 -51120,296.1456250589275 -51150,296.1454816173311 -51180,296.14534127475065 -51210,296.14520397039297 -51240,296.14506964386834 -51270,296.1449382354618 -51300,296.1448096863416 -51330,296.144683938717 -51360,296.1445609359548 -51390,296.14444062266284 -51420,296.14432294474807 -51450,296.14420784945224 -51480,296.1440952853716 -51510,296.1439852024627 -51540,296.1438775520384 -51570,296.14377228675454 -51600,296.1436693605908 -51630,296.1435687288266 -51660,296.1434703480127 -51690,296.14337417594066 -51720,296.14328017160966 -51750,296.14318829519226 -51780,296.143098507999 -51810,296.14301077244266 -51840,296.14292505200194 -51870,296.1428413111859 -51900,296.1427595154976 -51930,296.1426796313988 -51960,296.1426016262752 -51990,296.1425254684019 -52020,296.1424511269093 -52050,296.14237857175056 -52080,296.1423077736687 -52110,296.14223870416544 -52140,296.14217133547 -52170,296.14210564050893 -52200,296.14204159287704 -52230,296.14197915663584 -52260,296.14191828241064 -52290,296.14185891646946 -52320,296.1418010051693 -52350,296.1417444970688 -52380,296.1416893431856 -52410,296.141635496842 -52440,296.1415829134481 -52470,296.1415315503476 -52500,296.1414813683348 -52530,296.1414323313185 -52560,296.1413844051367 -52590,296.1413375569021 -52620,296.1412917546867 -52650,296.1412469674266 -52680,296.1412031648269 -52710,296.1411603175273 -52740,296.1411183967796 -52770,296.1410773745665 -52800,296.14103722355526 -52830,296.1409979170495 -52860,296.140959428953 -52890,296.14092173373626 -52920,296.14088480640504 -52950,296.14084862247086 -52980,296.1408131579228 -53010,296.14077838920207 -53040,296.1407442931774 -53070,296.14071084712265 -53100,296.1406780286964 -53130,296.1406458159228 -53160,296.1406141871741 -53190,296.1405831211555 -53220,296.14055259689 -53250,296.1405225937068 -53280,296.14049309122987 -53310,296.1404640693681 -53340,296.1404355083077 -53370,296.1404073885052 -53400,296.14037969068266 -53430,296.1403523958236 -53460,296.140325485171 -53490,296.1402989402262 -53520,296.1402727427496 -53550,296.14024687476234 -53580,296.1402213185498 -53610,296.1401960566659 -53640,296.1401710719393 -53670,296.14014634748 -53700,296.14012186668833 -53730,296.14009761326423 -53760,296.1400735712178 -53790,296.1400497248813 -53820,296.14002605892205 -53850,296.1400025583557 -53880,296.13997920856167 -53910,296.1399559952976 -53940,296.1399329047163 -53970,296.1399099233821 -54000,296.1398870382879 -54030,296.1398642365919 -54060,296.13984150596417 -54090,296.13981883511786 -54120,296.1397962139449 -54150,296.1397736335931 -54180,296.1397510864311 -54210,296.1397285659934 -54240,296.1397060669208 -54270,296.13968358490337 -54300,296.1396611166246 -54330,296.1396386597082 -54360,296.1396162126652 -54390,296.1395937748434 -54420,296.13957134637803 -54450,296.13954892814354 -54480,296.139526521619 -54510,296.1395041291257 -54540,296.1394817534729 -54570,296.13945939802784 -54600,296.13943706668005 -54630,296.1394147637963 -54660,296.1393924941784 -54690,296.1393702630248 -54720,296.1393480758924 -54750,296.13932593866053 -54780,296.1393038574956 -54810,296.13928183881643 -54840,296.1392598892625 -54870,296.1392380156619 -54900,296.1392162250011 -54930,296.13919452439694 -54960,296.13917292106845 -54990,296.13915143858856 -55020,296.13913009444497 -55050,296.1391088962246 -55080,296.1390878470808 -55110,296.1390669492527 -55140,296.13904620542945 -55170,296.13902561891354 -55200,296.1390051935081 -55230,296.1389849333853 -55260,296.1389648429799 -55290,296.1389449269091 -55320,296.138925189911 -55350,296.1389056367969 -55380,296.13888627241454 -55410,296.1388671016187 -55440,296.138848129247 -55470,296.1388293601005 -55500,296.1388107989272 -55530,296.1387924504081 -55560,296.1387743191459 -55590,296.13875640965483 -55620,296.1387387263526 -55650,296.1387212735532 -55680,296.138704055462 -55710,296.1386870761703 -55740,296.1386703396524 -55770,296.1386538497624 -55800,296.1386376102327 -55830,296.1386215493647 -55860,296.13860546042395 -55890,296.13858910244426 -55920,296.13857223374947 -55950,296.1385546396046 -55980,296.1385361341054 -56010,296.1385165575638 -56040,296.13849577326755 -56070,296.1384736648664 -56100,296.138450134244 -56130,296.1384250997444 -56160,296.13839849465546 -56190,296.13837026589107 -56220,296.13834037282965 -56250,296.1383087862803 -56280,296.1382754939683 -56310,296.1382404745422 -56340,296.13820373220693 -56370,296.13816527661413 -56400,296.1381251235032 -56430,296.1380832954107 -56460,296.13803982135187 -56490,296.13799473675647 -56520,296.1379480851917 -56550,296.1378999165759 -56580,296.13785028556697 -56610,296.13779925071674 -56640,296.1377468740736 -56670,296.1376932209482 -56700,296.1376383597327 -56730,296.1375823617503 -56760,296.1375253011336 -56790,296.1374672547368 -56820,296.13740830208707 -56850,296.13734852538227 -56880,296.1372880095478 -56910,296.13722684236444 -56940,296.13716511469096 -56970,296.1371029208096 -57000,296.137040358942 -57030,296.1369775320039 -57060,296.1369145334731 -57090,296.1368514988739 -57120,296.1367885509254 -57150,296.1367258288318 -57180,296.1366634881688 -57210,296.13660171416683 -57240,296.13654227229506 -57270,296.1364911305326 -57300,296.13644128703834 -57330,296.1363939630365 -57360,296.13634455579404 -57390,296.1362909209459 -57420,296.1362348817999 -57450,296.13617704938366 -57480,296.1361177569232 -57510,296.1360572297988 -57540,296.13599575084567 -57570,296.13593370448723 -57600,296.135871360374 -57630,296.1358086698851 -57660,296.1357453823273 -57690,296.13568134017913 -57720,296.1356164400077 -57750,296.1355506234172 -57780,296.1354838783641 -57810,296.13541623088827 -57840,296.1353477353033 -57870,296.1352784658984 -57900,296.1352085243693 -57930,296.1351380163914 -57960,296.1350523975009 -57990,296.13496345269306 -58020,296.1348765730112 -58050,296.1347913334223 -58080,296.13470747470376 -58110,296.1346248472101 -58140,296.13454331683346 -58170,296.1344627864181 -58200,296.1343831965193 -58230,296.1343045108583 -58260,296.13422672299663 -58290,296.13414986989505 -58320,296.1340740374426 -58350,296.1339993653513 -58380,296.1339241510525 -58410,296.13383030373734 -58440,296.1337352346162 -58470,296.1336456133359 -58500,296.1335606814962 -58530,296.1334800386872 -58560,296.13340341777115 -58590,296.13333063562953 -58620,296.1332615955255 -58650,296.1331962591354 -58680,296.1331346207667 -58710,296.13307669193205 -58740,296.13302249388704 -58770,296.1329720537911 -58800,296.1329216294237 -58830,296.13286192533747 -58860,296.132808481713 -58890,296.1327609652609 -58920,296.1327189921436 -58950,296.1326822594488 -58980,296.1326505724708 -59010,296.13262380969445 -59040,296.13260187714525 -59070,296.1325847079984 -59100,296.13257225399394 -59130,296.1325644756751 -59160,296.13256134286235 -59190,296.1325611485292 -59220,296.13255687350954 -59250,296.1325566626905 -59280,296.13256343783434 -59310,296.1325756818896 -59340,296.13259344611293 -59370,296.1326164760298 -59400,296.1326446055262 -59430,296.1326776517461 -59460,296.13271537189667 -59490,296.1327574911923 -59520,296.1328037401672 -59550,296.13285350329954 -59580,296.13290517949144 -59610,296.13295904211054 -59640,296.1330159635274 -59670,296.1330762787072 -59700,296.13314000051474 -59730,296.1332068757633 -59760,296.13327656355705 -59790,296.1333489146374 -59820,296.1334237814701 -59850,296.1335010287026 -59880,296.1335805760612 -59910,296.1336623259233 -59940,296.13374616466285 -59970,296.133831867386 -60000,296.13391921083746 -60030,296.1340079521134 -60060,296.1340978883158 -60090,296.1341888338203 -60120,296.1342806241198 -60150,296.13437312074063 -60180,296.1344662644677 -60210,296.1345600327586 -60240,296.1346544447481 -60270,296.13474951672003 -60300,296.13484523227675 -60330,296.1346136009016 -60360,296.13182930292226 -60390,296.1259975399737 -60420,296.11743289364347 -60450,296.10640312657085 -60480,296.09315878089456 -60510,296.0779224294673 -60540,296.06088982953486 -60570,296.0422374912257 -60600,296.0221241270683 -60630,296.00069239949084 -60660,295.9780698419352 -60690,295.9543707982759 -60720,295.92969825861 -60750,295.90414516772387 -60780,295.8777954019666 -60810,295.8507246918847 -60840,295.8230015314393 -60870,295.79468796696574 -60900,295.7658402329238 -60930,295.7365093003174 -60960,295.7067414048652 -60990,295.6765785194535 -61020,295.6460587576674 -61050,295.6152168338548 -61080,295.58408462446494 -61110,295.5526917053472 -61140,295.5210656827714 -61170,295.4892322630838 -61200,295.4572151399758 -61230,295.4250356554317 -61260,295.39271265037894 -61290,295.36026287011333 -61320,295.32770148509 -61350,295.29504240017707 -61380,295.2622983661733 -61410,295.22948103640283 -61440,295.19669658583183 -61470,295.1664542076654 -61500,295.143416512052 -61530,295.1343963460325 -61560,295.1403147029672 -61590,295.1583137195448 -61620,295.1838355940227 -61650,295.2115121392497 -61680,295.2372387587547 -61710,295.26057644285027 -61740,295.28172921486043 -61770,295.3008796034802 -61800,295.3181839168876 -61830,295.3337851697309 -61860,295.3478126345249 -61890,295.3603797654843 -61920,295.3715862876598 -61950,295.3815216243951 -61980,295.3902672496685 -62010,295.39789761889887 -62040,295.40448041174784 -62070,295.4100768270467 -62100,295.41474219063866 -62130,295.4185267393251 -62160,295.42147634719163 -62190,295.42363307454696 -62220,295.42503556047706 -62250,295.4257193391136 -62280,295.42571713880625 -62310,295.4250591771609 -62340,295.423773437098 -62370,295.4218859085403 -62400,295.4194207929879 -62430,295.4164006784181 -62460,295.4128466937879 -62490,295.408778648749 -62520,295.4042151601209 -62550,295.39917376497186 -62580,295.3936710205885 -62610,295.3877225926438 -62640,295.3813433333768 -62670,295.3745473513976 -62700,295.3673480742399 -62730,295.35975830439304 -62760,295.35179026940534 -62790,295.3434556666517 -62820,295.334765703381 -62850,295.32573113262174 -62880,295.3163622854439 -62910,295.30666909998695 -62940,295.2966611476029 -62970,295.28634765642147 -63000,295.2757375337086 -63030,295.2648393739276 -63060,295.2536614470083 -63090,295.2422116854549 -63120,295.23049768555705 -63150,295.218526740942 -63180,295.2063058710398 -63210,295.193841812965 -63240,295.1811410975348 -63270,295.16822493079275 -63300,295.15591752899314 -63330,295.1459970143818 -63360,295.1397945849147 -63390,295.137929050278 -63420,295.140311721636 -63450,295.14602325648286 -63480,295.15379101506034 -63510,295.1620344612677 -63540,295.1692461503875 -63570,295.1742307201204 -63600,295.176648447828 -63630,295.1767064434996 -63660,295.1746308013331 -63690,295.17062759086434 -63720,295.1649191568037 -63750,295.1582578503841 -63780,295.1517629825702 -63810,295.14644260682184 -63840,295.1430293354832 -63870,295.1418914481359 -63900,295.1429812798145 -63930,295.1459001565816 -63960,295.149960136539 -63990,295.1543454097788 -64020,295.1582438729628 -64050,295.1609894846009 -64080,295.16216105675045 -64110,295.16163402393045 -64140,295.1595849010624 -64170,295.1564129302885 -64200,295.1527026139858 -64230,295.1490798400462 -64260,295.1461129149039 -64290,295.14422027094577 -64320,295.14361235971745 -64350,295.1442701948481 -64380,295.1459661640208 -64410,295.1483132641566 -64440,295.15085033673444 -64470,295.1531173308665 -64500,295.1547287002911 -64530,295.15544399717334 -64560,295.1551834353513 -64590,295.15404276241406 -64620,295.15226339194345 -64650,295.1501847877505 -64680,295.14818471292244 -64710,295.146577675245 -64740,295.14553191619564 -64770,295.1451559712242 -64800,295.1454281737294 -64830,295.1154967614589 -64860,295.09424320900894 -64890,295.0846578917393 -64920,295.0875829466555 -64950,295.1016366094618 -64980,295.1236462944157 -65010,295.14930772340506 -65040,295.1739952223098 -65070,295.16932778153443 -65100,295.1633516586204 -65130,295.16864871070453 -65160,295.17177991252424 -65190,295.16349558559614 -65220,295.164141827948 -65250,295.1688483730101 -65280,295.1637225268613 -65310,295.16681947138176 -65340,295.16665541896623 -65370,295.16344581516023 -65400,295.1579148094427 -65430,295.15114005441325 -65460,295.14430879869565 -65490,295.1385533517618 -65520,295.1347379266984 -65550,295.1333025729504 -65580,295.13427919283606 -65610,295.1372898765045 -65640,295.14163274596507 -65670,295.14643665613903 -65700,295.15082865235775 -65730,295.154066583871 -65760,295.1556762723218 -65790,295.15550859441925 -65820,295.15369132159594 -65850,295.1506464057572 -65880,295.1469591150523 -65910,295.1432851920673 -65940,295.1402142650531 -65970,295.1382101975591 -66000,295.1375053071377 -66030,295.13808080559346 -66060,295.1397239450664 -66090,295.14207512531823 -66120,295.14465289890273 -66150,295.1469909013828 -66180,295.14870664397665 -66210,295.1495485789783 -66240,295.1494397474494 -66270,295.148464400681 -66300,295.14683994856654 -66330,295.14488998013314 -66360,295.1429610734907 -66390,295.14136617128133 -66420,295.1403362098899 -66450,295.13998864502065 -66480,295.14031728737103 -66510,295.14121257165164 -66540,295.14246709306576 -66570,295.1438363117086 -66600,295.14507576804533 -66630,295.1459827017442 -66660,295.1464307168703 -66690,295.14638052448873 -66720,295.1458794497337 -66750,295.1450446893546 -66780,295.14404266416767 -66810,295.1430561429661 -66840,295.14224358955914 -66870,295.14172738326715 -66900,295.14156880147056 -66930,295.14175698149194 -66960,295.14223515829696 -66990,295.14291202515346 -67020,295.1436511495413 -67050,295.1443210237629 -67080,295.1448159625562 -67110,295.14507090691933 -67140,295.145065025271 -67170,295.1448247333638 -67200,295.1444118369268 -67230,295.14390500806263 -67260,295.14340822688933 -67290,295.14300605232785 -67320,295.1427537791953 -67350,295.1426876413413 -67380,295.1428092990532 -67410,295.1430862193002 -67440,295.1434640713107 -67470,295.1438744550087 -67500,295.14424350607186 -67530,295.1445315019851 -67560,295.1447001835076 -67590,295.14473232339213 -67620,295.14463735774325 -67650,295.1444489768048 -67680,295.144212498448 -67710,295.14398150961165 -67740,295.14379474895827 -67770,295.1436855119036 -67800,295.1436714074985 -67830,295.14375529508965 -67860,295.1439233494882 -67890,295.14414793977846 -67920,295.14439296202914 -67950,295.14462318198025 -67980,295.14480958801124 -68010,295.1449337384317 -68040,295.1449882093852 -68070,295.14497538338344 -68100,295.1449119408928 -68130,295.14482446637203 -68160,295.14474042180194 -68190,295.1446821017583 -68220,295.1446652777459 -68250,295.144699214675 -68280,295.1447856090428 -68310,295.1449175542493 -68340,295.1450807629547 -68370,295.14525725110235 -68400,295.1454296046571 -68430,295.1455834984705 -68460,295.14570875389444 -68490,295.14580114566627 -68520,295.1458654680624 -68550,295.14592270467256 -68580,295.1459869606903 -68610,295.1460502474169 -68640,295.14609409131754 -68670,295.1461044598394 -68700,295.14607788618946 -68730,295.1460201230978 -68760,295.145942465918 -68790,295.1458585263647 -68820,295.145781772753 -68850,295.1457234905464 -68880,295.14569113431406 -68910,295.1456873297905 -68940,295.14570974778616 -68970,295.1457518583104 -69000,295.14580436836354 -69030,295.14585702746285 -69060,295.14590045188095 -69090,295.14592765159017 -69120,295.14593502432496 -69150,295.14592269175773 -69180,295.14589417410355 -69210,295.1458555131213 -69240,295.14581403824195 -69270,295.14577701376817 -69300,295.1457504076205 -69330,295.1457379820444 -69360,295.1457408350415 -69390,295.1457574335405 -69420,295.1457840919883 -69450,295.14581577793393 -69480,295.1458470802592 -69510,295.1458731616083 -69540,295.14589053408224 -69570,295.1458975407642 -69600,295.1458944855613 -69630,295.14588341858 -69660,295.1458676423397 -69690,295.145851046224 -69720,295.14583739682377 -69750,295.14582970862654 -69780,295.1458297953667 -69810,295.1458380631566 -69840,295.14585356020893 -69870,295.1458742530416 -69900,295.1458974630564 -69930,295.1459203756864 -69960,295.1459405294011 -69990,295.145956203149 -70020,295.1459666450125 -70050,295.14597211672526 -70080,295.1459737621753 -70110,295.14597333725624 -70140,295.14597285880893 -70170,295.14597423921623 -70200,295.14597896995264 -70230,295.1459879036452 -70260,295.1460011632095 -70290,295.1460181825781 -70320,295.1460378607901 -70350,295.1460587935248 -70380,295.1460795360981 -70410,295.14609885056944 -70440,295.14611589639105 -70470,295.1461303371328 -70500,295.1461423524415 -70530,295.14615256142577 -70560,295.14616187815574 -70590,295.14617132969533 -70620,295.14618187079765 -70650,295.1461942269907 -70680,295.146208790197 -70710,295.1462255800104 -70740,295.1462442714663 -70770,295.14626427878915 -70800,295.14628487601993 -70830,295.14630533084664 -70860,295.146325027794 -70890,295.1463435608252 -70920,295.14636078234787 -70950,295.14637680415314 -70980,295.14639195450155 -71010,295.1464067020149 -71040,295.1464215626427 -71070,295.14643700698 -71100,295.1464533835093 -71130,295.1464708693076 -71160,295.14648945413745 -71190,295.14650895768125 -71220,295.1465290740722 -71250,295.1465494337631 -71280,295.1465696707158 -71310,295.1465894830625 -71340,295.14660867755015 -71370,295.1466271916894 -71400,295.146645091845 -71430,295.1466625497377 -71460,295.14667980325896 -71490,295.1466971096333 -71520,295.14671469953686 -71550,295.146732739852 -71580,295.1467513105868 -71610,295.1467703985974 -71640,295.14678990766964 -71670,295.1468096817871 -71700,295.1468295364687 -71730,295.14684929214866 -71760,295.1468688037712 -71790,295.14688798193623 -71820,295.1469068027794 -71850,295.1469253059327 -71880,295.1469435819846 -71910,295.14696175250845 -71940,295.146979946708 -71970,295.1469982789347 -72000,295.1470168308015 -72030,295.1470356495562 -72060,295.14705474165265 -72090,295.1470740486707 -72120,295.14709343887233 -72150,295.1471127282954 -72180,295.14713172010767 -72210,295.14715024435066 -72240,295.14716818680057 -72270,295.14718550356173 -72300,295.1472022220745 -72330,295.1472184305288 -72360,295.14723425843783 -72390,295.14724985208136 -72420,295.14726534923125 -72450,295.14728085749744 -72480,295.14729643969247 -72510,295.14731210808714 -72540,295.14732782771995 -72570,295.1473435273608 -72600,295.14735911557045 -72630,295.14737449867505 -72660,295.1473895974489 -72690,295.14740435980656 -72720,295.1474187677292 -72750,295.1474328377831 -72780,295.1474466157412 -72810,295.1474601667247 -72840,295.1474735629701 -72870,295.14748687150785 -72900,295.1475001438362 -72930,295.1475134091442 -72960,295.1475266719031 -72990,295.1475399138328 -73020,295.1475530995233 -73050,295.147566184495 -73080,295.1475791243027 -73110,295.1475918833896 -73140,295.1476044426154 -73170,295.14761680454035 -73200,295.1476289956567 -73230,295.1476410649883 -73260,295.14765307898347 -73290,295.14766511334153 -73320,295.1476772430451 -73350,295.1476895321554 -73380,295.1477020248357 -73410,295.147714738804 -73440,295.1477276621562 -73470,295.1477407542061 -73500,295.14775395048486 -73530,295.14776717129115 -73560,295.147780332383 -73590,295.1477933559005 -73620,295.14780617960423 -73650,295.1478187629804 -73680,295.1478310894779 -73710,295.1478431648915 -73740,295.1478550125255 -73770,295.14786666622354 -73800,295.1478781625869 -73830,295.1478895337204 -73860,295.1479008016443 -73890,295.1479119751322 -73920,295.1479230492542 -73950,295.1479340074248 -73980,295.1479448253505 -74010,295.14795547601176 -74040,295.1479659347228 -74070,295.1479761833948 -74100,295.1479862133432 -74130,295.14799602628966 -74160,295.14800563354913 -74190,295.14801505369803 -74220,295.1480243092525 -74250,295.14803342300206 -74280,295.14804241464225 -74310,295.1480512982289 -74340,295.1480600807559 -74370,295.14806876187333 -74400,295.1480773345221 -74430,295.1480857860763 -74460,295.1480940996617 -74490,295.1481022554267 -74520,295.14811023169017 -74550,295.1481180059618 -74580,295.1481255558315 -74610,295.1481328597417 -74640,295.1481398976744 -74670,295.14814665187066 -74700,295.1481531076804 -74730,295.1481592545202 -74760,295.14816508675847 -74790,295.1481706042637 -74820,295.1481758124052 -74850,295.1481807214534 -74880,295.14818534549534 -74910,295.148189701077 -74940,295.14819380580417 -74970,295.1481976770965 -75000,295.14820133123544 -75030,295.1482047827917 -75060,295.1482080444577 -75090,295.1482111272467 -75120,295.1482140409664 -75150,295.14821679483623 -75180,295.14821939810884 -75210,295.14822186057273 -75240,295.1482241928468 -75270,295.14822640642694 -75300,295.148228513491 -75330,295.1482305265111 -75360,295.14823245775216 -75390,295.14823431874936 -75420,295.1482361198527 -75450,295.1482378699094 -75480,295.1482395761255 -75510,295.1482412441156 -75540,295.14824287811604 -75570,295.14824448131526 -75600,295.1482460562369 -75630,295.148247497263 -75660,295.1482485178984 -75690,295.1482487851019 -75720,295.14824808691003 -75750,295.1482464111799 -75780,295.14824393262467 -75810,295.14824095331943 -75840,295.1482378323309 -75870,295.1482349199897 -75900,295.1482325027621 -75930,295.14823076346715 -75960,295.1482297613672 -75990,295.14822943423434 -76020,295.14822962057684 -76050,295.1482300965744 -76080,295.1482306200503 -76110,295.14823097331185 -76140,295.148230997711 -76170,295.14823061490046 -76200,295.1482298324999 -76230,295.148228734723 -76260,295.14822746098463 -76290,295.14822617724093 -76320,295.1482250455772 -76350,295.14822419733366 -76380,295.14822371396826 -76410,295.1482236180765 -76440,295.1482238752122 -76470,295.1482244051192 -76500,295.14822509957247 -76530,295.1482258432009 -76560,295.1482265335117 -76590,295.1482270968277 -76620,295.14822749784685 -76650,295.1482277418266 -76680,295.1482278697342 -76710,295.1482279478531 -76740,295.14822805412746 -76770,295.1482282638558 -76800,295.14822863720354 -76830,295.14822921046124 -76860,295.14822999215994 -76890,295.1482309642315 -76920,295.1482320875345 -76950,295.1482333103967 -76980,295.14823457844864 -77010,295.14823584396925 -77040,295.1482370732193 -77070,295.14823825072284 -77100,295.1482393800696 -77130,295.14824048143885 -77160,295.1482415865764 -77190,295.148242732315 -77220,295.148243953868 -77250,295.1482452790462 -77280,295.14824672428176 -77310,295.1482482929539 -77340,295.1482499760758 -77370,295.1482517550002 -77400,295.1482536054934 -77430,295.1482555023613 -77460,295.14825742379554 -77490,295.1482593547361 -77520,295.14826128878 -77550,295.1482632284542 -77580,295.14826518396626 -77610,295.1482671707884 -77640,295.148269206594 -77670,295.1482713081245 -77700,295.14827348852026 -77730,295.14827575551806 -77760,295.1482781107362 -77790,295.14828055006075 -77820,295.148283064962 -77850,295.14828564443 -77880,295.14828827714285 -77910,295.1482909534816 -77940,295.1482936670667 -77970,295.1482964155939 -78000,295.14829920086584 -78030,295.1483020281898 -78060,295.14830490528044 -78090,295.1483078408565 -78120,295.1483108431865 -78150,295.14831391884286 -78180,295.148317071864 -78210,295.14832030342694 -78240,295.14832361203867 -78270,295.148326994159 -78300,295.14833044510846 -78330,295.1483339600805 -78360,295.1483375350784 -78390,295.14834116762603 -78420,295.14834485715664 -78450,295.1483486050434 -78480,295.148352414302 -78510,295.1483562890475 -78540,295.14836023382 -78570,295.1483642529046 -78600,295.1483683497622 -78630,295.1483725266534 -78660,295.1483767845023 -78690,295.1483811229981 -78720,295.1483855408947 -78750,295.148390036439 -78780,295.14839460784253 -78810,295.1483992537135 -78840,295.1484039733804 -78870,295.1484087670632 -78900,295.1484136358774 -78930,295.14841858168813 -78960,295.1484236068518 -78990,295.1484287139004 -79020,295.1484339052268 -79050,295.1484391828242 -79080,295.14844454811725 -79110,295.1484500019056 -79140,295.14845554441706 -79170,295.14846117545176 -79200,295.1484668945832 -79230,295.1484727735853 -79260,295.1484789631671 -79290,295.1484855311597 -79320,295.1484923329908 -79350,295.1484990180014 -79380,295.1485051329806 -79410,295.14851024406977 -79440,295.148514029522 -79470,295.148516332522 -79500,295.14851717853963 -79530,295.1485167626106 -79560,295.14851541126893 -79590,295.14851352613994 -79620,295.1485115194331 -79650,295.1485097529475 -79680,295.14850849081523 -79710,295.1485078727813 -79740,295.14850791051947 -79770,295.1485085052989 -79800,295.1485094819124 -79830,295.14851063157585 -79860,295.14851175573324 -79890,295.14851270334134 -79920,295.1485133960245 -79950,295.1485138380782 -79980,295.1485141111396 -80010,295.1485143559455 -80040,295.14851474550613 -80070,295.14851545508225 -80100,295.1485166343423 -80130,295.1485183861781 -80160,295.1485207551028 -80190,295.14852372626 -80220,295.14852723419347 -80250,295.14853117896587 -80280,295.14853544622025 -80310,295.1485399274476 -80340,295.1485445370556 -80370,295.14854922370574 -80400,295.1485539745945 -80430,295.1485588126727 -80460,295.14856378797833 -80490,295.1485689651347 -80520,295.1485744095049 -80550,295.1485801744754 -80580,295.1485862919066 -80610,295.14859276705675 -80640,295.1485995784042 -80670,295.1486066819277 -80700,295.14861401869945 -80730,295.1486215241996 -80760,295.1486291376281 -80790,295.14863680966056 -80820,295.14864450750525 -80850,295.148652216687 -80880,295.1486599395858 -80910,295.14866769130174 -80940,295.14867549380995 -80970,295.1486833695592 -81000,295.1486913356494 -81030,295.1486993995117 -81060,295.14870755667266 -81090,295.1487157907752 -81120,295.1487240756334 -81150,295.1487323787783 -81180,295.1487406657532 -81210,295.14874890436744 -81240,295.1487570681967 -81270,295.14876513882103 -81300,295.14877310654714 -81330,295.14878096964594 -81360,295.14878873237905 -81390,295.1487964022654 -81420,295.1488039871221 -81450,295.14881149239847 -81480,295.14881891922084 -81510,295.1488262634072 -81540,295.1488335155193 -81570,295.14884066184163 -81600,295.14884768603054 -81630,295.14885457108915 -81660,295.14886130130446 -81690,295.148867863824 -81720,295.14887424964223 -81750,295.14888045388864 -81780,295.1488864754374 -81810,295.1488923159695 -81840,295.1488979786988 -81870,295.1489034670086 -81900,295.1489087832351 -81930,295.14891392778554 -81960,295.14891889870705 -81990,295.1489236917316 -82020,295.1489283007419 -82050,295.1489327185392 -82080,295.1489369377512 -82110,295.14894095171525 -82140,295.148944755189 -82170,295.1489483447872 -82200,295.14895171909586 -82230,295.14895487847934 -82260,295.14895782463896 -82290,295.1489605600243 -82320,295.14896308720955 -82350,295.14896540834224 -82380,295.1489675247503 -82410,295.14896943675745 -82440,295.1489711437174 -82470,295.1489726442394 -82500,295.14897393654866 -82530,295.14897501890835 -82560,295.14897589002646 -82590,295.14897654938136 -82620,295.14897699742005 -82650,295.1489772356095 -82680,295.14897726634763 -82710,295.1489770927639 -82740,295.1489767184556 -82770,295.1489761472106 -82800,295.1489753827675 -82830,295.1489733809758 -82860,295.14896729846294 -82890,295.14895372116933 -82920,295.1489302688232 -82950,295.1488964107344 -82980,295.1488534296746 -83010,295.14880392781674 -83040,295.1487511976364 -83070,295.14869860578244 -83100,295.1486490530076 -83130,295.14860456161443 -83160,295.1485660394312 -83190,295.1485332472542 -83220,295.1485049605015 -83250,295.1484792808468 -83280,295.1484540304565 -83310,295.14842715369485 -83340,295.14839705771215 -83370,295.1483628408269 -83400,295.1483243817093 -83430,295.14828228839343 -83460,295.1482377296782 -83490,295.1481921889104 -83520,295.1481471891776 -83550,295.1481040388737 -83580,295.1480636383753 -83610,295.1480263739847 -83640,295.1479921086418 -83670,295.1479602611841 -83700,295.1479299520198 -83730,295.147900184207 -83760,295.1478700260788 -83790,295.147838764642 -83820,295.1478060069288 -83850,295.14777171748136 -83880,295.1477361924622 -83910,295.14769998164445 -83940,295.1476637743028 -83970,295.1476282722233 -84000,295.1475940733222 -84030,295.14756158460057 -84060,295.1475309759431 -84090,295.1475021782478 -84120,295.14747492172364 -84150,295.14744880395085 -84180,295.14742337335656 -84210,295.14739821257945 -84240,295.1473730077508 -84270,295.1473475934678 -84300,295.14732196833654 -84330,295.1472962814102 -84360,295.147270794701 -84390,295.14724583043886 -84420,295.14722171344664 -84450,295.1471987187836 -84480,295.147177032915 -84510,295.1471567335701 -84540,295.1471377898034 -84570,295.1471200802316 -84600,295.14710342457226 -84630,295.1470876218661 -84660,295.1470724883024 -84690,295.1470578883429 -84720,295.14704375459013 -84750,295.14703009419304 -84780,295.1470169820574 -84810,295.14700454331904 -84840,295.146992929091 -84870,295.14698229022457 -84900,295.1469727536827 -84930,295.14696440522766 -84960,295.146957280694 -84990,295.1469513664513 -85020,295.1469466080607 -85050,295.14694292485154 -85080,295.1469402273811 -85110,295.1469384345609 -85140,295.1469374876097 -85170,295.1469373588105 -85200,295.1469380541238 -85230,295.1469396098342 -85260,295.1469420843904 -85290,295.14694554728953 -85320,295.1469500671668 -85350,295.1469557011683 -85380,295.14696248726386 -85410,295.14697044048364 -85440,295.1469795533361 -85470,295.1469897999104 -85500,295.1470011426032 -85530,295.1470135400816 -85560,295.14702695502626 -85590,295.14704136038057 -85620,295.1470567432092 -85650,295.14707310576176 -85680,295.14709046384587 -85710,295.14710884305487 -85740,295.1471282737014 -85770,295.14714878543964 -85800,295.14717040251105 -85830,295.1471931403523 -85860,295.14721700399963 -85890,295.1472419883808 -85920,295.1472680802576 -85950,295.14729526133283 -85980,295.1473235118859 -86010,295.1473528142782 -86040,295.1473831557588 -86070,295.14741453017257 -86100,295.147446938401 -86130,295.147480387592 -86160,295.14751488943506 -86190,295.14755045787075 -86220,295.14758710668053 -86250,295.14762484737633 -86280,295.14766368771905 -86310,295.14770363105464 -86340,295.14774467650227 -86370,295.1477868198824 -86400,295.1478300551599 -86430,295.14787300580946 -86460,295.1479125367249 -86490,295.1479455636905 -86520,295.1479705681508 -86550,295.14798674137256 -86580,295.14799460857444 -86610,295.147996016154 -86640,295.1479937135044 -86670,295.1479907890151 -86700,295.14799011211323 -86730,295.14799387410403 -86760,295.1480032876585 -86790,295.14801847596345 -86820,295.14803855154423 -86850,295.1480618548265 -86880,295.14808629905264 -86910,295.14810975524426 -86940,295.14813041003856 -86970,295.1481470395877 -87000,295.148159161596 -87030,295.1481670510764 -87060,295.1481716325495 -87090,295.14817425989946 -87120,295.14817646321274 -87150,295.14817968274104 -87180,295.1481850389485 -87210,295.14819317523387 -87240,295.14820419342834 -87270,295.1482176846173 -87300,295.1482328417763 -87330,295.1482486283885 -87360,295.1482639702434 -87390,295.1482779366577 -87420,295.14828988206773 -87450,295.14829952804 -87480,295.1483069773466 -87510,295.14831266372346 -87540,295.1483172512545 -87570,295.14832150443635 -87600,295.14832615298786 -87630,295.14833177423014 -87660,295.1483387109585 -87690,295.14834703528464 -87720,295.14835656040697 -87750,295.1483668941637 -87780,295.14837752185184 -87810,295.1483879020483 -87840,295.1483975584448 -87870,295.1484061528572 -87900,295.1484135289822 -87930,295.1484197222311 -87960,295.1484249369884 -87990,295.14842949791523 -88020,295.14843378562824 -88050,295.14843816876544 -88080,295.14844294399114 -88110,295.1484482931669 -88140,295.14845426326644 -88170,295.14846077035827 -88200,295.1484676248867 -88230,295.1484745721979 -88260,295.1484813402777 -88290,295.1484876861195 -88320,295.1484934333072 -88350,295.14849849524035 -88380,295.14850288145306 -88410,295.1485066874816 -88440,295.1485100714021 -88470,295.1485132220928 -88500,295.1485163251937 -88530,295.148519532597 -88560,295.1485229402025 -88590,295.148526576889 -88620,295.14853040553896 -88650,295.1485343348855 -88680,295.14853823927024 -88710,295.14854198234843 -88740,295.1485454404737 -88770,295.14854852192406 -88800,295.1485511791556 -88830,295.14855341267344 -88860,295.1485552666168 -88890,295.1485568175193 -88920,295.14855815870465 -88950,295.14855938328185 -88980,295.1485605686755 -89010,295.1485617651141 -89040,295.1485629896298 -89070,295.1485642260766 -89100,295.1485654306325 -89130,295.1485665413928 -89160,295.1485674901061 -89190,295.14856821392567 -89220,295.1485686652301 -89250,295.1485688180604 -89280,295.14856867040896 -89310,295.1485682423464 -89340,295.1485675706654 -89370,295.1485667012328 -89400,295.14856568051783 -89430,295.1485645477701 -89460,295.1485633290819 -89490,295.14856203415115 -89520,295.1485606560406 -89550,295.1485591737093 -89580,295.14855755665184 -89610,295.1485557706926 -89640,295.14855378387523 -89670,295.14855157146457 -89700,295.14854911931366 -89730,295.14854642518264 -89760,295.1485434979738 -89790,295.1485403551925 -89820,295.1485370192119 -89850,295.1485335130631 -89880,295.14852985649054 -89910,295.14852606289924 -89940,295.1485221376217 -89970,295.14851807767184 -90000,295.1485138728972 -90030,295.14850966749106 -90060,295.14850583524844 -90090,295.1485027924718 -90120,295.1485008383938 -90150,295.1485000779232 -90180,295.14850041120644 -90210,295.1485015675005 -90240,295.14850316583573 -90270,295.14850478803424 -90300,295.14850605090464 -90330,295.1485066660508 -90360,295.14850647868764 -90390,295.14850548097587 -90420,295.1485037999433 -90450,295.14850166424145 -90480,295.1484993571031 -90510,295.1484971644945 -90540,295.14849532745336 -90570,295.14849400611484 -90600,295.14849326032873 -90630,295.1484930485964 -90660,295.14849324387285 -90690,295.1484936621229 -90720,295.1484940977756 -90750,295.14849435960343 -90780,295.148494301057 -90810,295.148493840532 -90840,295.1484929691124 -90870,295.1484917456226 -90900,295.1484902809309 -90930,295.14848871505546 -90960,295.1484871914931 -90990,295.1484858332603 -91020,295.14848472445374 -91050,295.1484838998846 -91080,295.14848334378246 -91110,295.148482996975 -91140,295.14848277060327 -91170,295.14848256352286 -91200,295.14848228018843 -91230,295.14848184602226 -91260,295.14848121795006 -91290,295.14848038879416 -91320,295.1484793853438 -91350,295.1484782609846 -91380,295.148477084589 -91410,295.14847592783747 -91440,295.148474853204 -91470,295.1484739045324 -91500,295.1484731015305 -91530,295.14847243874124 -91560,295.1484718887639 -91590,295.1484714088121 -91620,295.1484709492293 -91650,295.1484704623789 -91680,295.14846991040764 -91710,295.1484692706986 -91740,295.14846853832034 -91770,295.1484677253337 -91800,295.1484668573527 -91830,295.14846596817125 -91860,295.1484650935171 -91890,295.1484642650452 -91920,295.14846350553256 -91950,295.14846282597165 -91980,295.14846222486966 -92010,295.14846168967256 -92040,295.1484611998882 -92070,295.1484607312406 -92100,295.1484602600783 -92130,295.1484597672836 -92160,295.1484592410838 -92190,295.148458678396 -92220,295.14845808461604 -92250,295.14845747202384 -92280,295.1484568571942 -92310,295.14845625792793 -92340,295.14845569025454 -92370,295.14845516599456 -92400,295.148454691235 -92430,295.148454265887 -92460,295.14845388430354 -92490,295.1484535367586 -92520,295.14845321146794 -92550,295.1484528967681 -92580,295.14845258308003 -92610,295.1484522643522 -92640,295.14845193879114 -92670,295.14845160882265 -92700,295.1484512803593 -92730,295.14845096155693 -92760,295.14845066131124 -92790,295.148450387767 -92820,295.14845014708425 -92850,295.14844994264234 -92880,295.14844977477463 -92910,295.14844964102963 -92940,295.1484495368687 -92970,295.14844945664566 -93000,295.14844939468094 -93030,295.1484493462456 -93060,295.14844930829884 -93090,295.1484492798817 -93120,295.1484492621298 -93150,295.1484492579406 -93180,295.148449271378 -93210,295.1484493069385 -93240,295.1484493688112 -93270,295.1484494602555 -93300,295.1484495831876 -93330,295.14844973802656 -93360,295.14844992380125 -93390,295.1484501384776 -93420,295.1484503794318 -93450,295.148450643979 -93480,295.1484509298644 -93510,295.1484512356396 -93540,295.14845156087216 -93570,295.14845190616865 -93600,295.1484522730242 -93630,295.14845263082015 -93660,295.1484529093926 -93690,295.1484530477254 -93720,295.1484530276349 -93750,295.14845288196534 -93780,295.1484526853029 -93810,295.14845253604943 -93840,295.14845253602846 -93870,295.1484527717634 -93900,295.1484533002901 -93930,295.1484541412926 -93960,295.14845527620906 -93990,295.1484566537989 -94020,295.148458200661 -94050,295.1484598345196 -94080,295.1484614778312 -94110,295.14846306943474 -94140,295.1484645724936 -94170,295.14846597774834 -94200,295.14846730196336 -94230,295.14846858225354 -94260,295.1484698675969 -94290,295.14847120918546 -94320,295.1484726513113 -94350,295.1484742242415 -94380,295.148475940078 -94410,295.14847779201455 -94440,295.1484797568063 -94470,295.14848179975115 -94500,295.1484838811336 -94530,295.14848596293234 -94560,295.1484880146598 -94590,295.1484900174444 -94620,295.14849196584044 -94650,295.1484938672696 -94680,295.148495739399 -94710,295.1484976060738 -94740,295.1484994926061 -94770,295.1485014212544 -94800,295.14850340762257 -94830,295.14850545848924 -94860,295.1485075712955 -94890,295.1485097352252 -94920,295.1485119335555 -94950,295.14851414677287 -94980,295.14851635587166 -95010,295.14851854527217 -95040,295.1485207049109 -95070,295.148522831232 -95100,295.1485249270152 -95130,295.14852700017235 -95160,295.148529061806 -95190,295.14853112391506 -95220,295.1485331971584 -95250,295.1485352890414 -95280,295.1485374027842 -95310,295.1485395369983 -95340,295.14854168615034 -95370,295.14854384166586 -95400,295.1485459934321 -95430,295.1485481314157 -95460,295.148550247116 -95490,295.14855233463425 -95520,295.148554391209 -95550,295.14855641718214 -95580,295.14855841545125 -95610,295.14856039054644 -95640,295.1485623475166 -95670,295.14856429082687 -95700,295.14856622344826 -95730,295.1485681462722 -95760,295.14857005791714 -95790,295.1485719549238 -95820,295.14857383227184 -95850,295.14857568410287 -95880,295.1485775045129 -95910,295.148579288276 -95940,295.14858103138687 -95970,295.1485827313494 -96000,295.1485843871859 -96030,295.148585999192 -96060,295.1485875685002 -96090,295.1485890965425 -96120,295.14859058450924 -96150,295.14859203289507 -96180,295.1485934411988 -96210,295.1485948078132 -96240,295.148596130106 -96270,295.14859740466204 -96300,295.1485986276317 -96330,295.14859979511937 -96360,295.14860090354466 -96390,295.1486019499189 -96420,295.1486029320008 -96450,295.1486038483153 -96480,295.1486046980473 -96510,295.1486054808378 -96540,295.1486061965275 -96570,295.1486068448937 -96600,295.1486074254267 -96630,295.14860793717804 -96660,295.1486083787016 -96690,295.14860874808744 -96720,295.1486090430773 -96750,295.1486092612332 -96780,295.1486094001301 -96810,295.14860945753713 -96840,295.14860943156003 -96870,295.1486093207259 -96900,295.14860912400167 -96930,295.1486088407501 -96960,295.1486084706375 -96990,295.1486080135126 -97020,295.1486074692813 -97050,295.1486068377975 -97080,295.148606118789 -97110,295.1486053118265 -97140,295.14860441633914 -97170,295.14860343167004 -97200,295.1486023571589 -97230,295.14860154202046 -97260,295.14860184216644 -97290,295.1486042080542 -97320,295.1486093319327 -97350,295.1486174720268 -97380,295.14862842244594 -97410,295.1486415826121 -97440,295.1486560892756 -97470,295.1486709793826 -97500,295.1486853539423 -97530,295.1486985162582 -97560,295.14871006435044 -97590,295.1487199266007 -97620,295.1487283399267 -97650,295.14873577931354 -97680,295.14874285474485 -97710,295.148750195496 -97740,295.1487583420147 -97770,295.14876766252206 -97800,295.14877830582213 -97830,295.1487901947875 -97860,295.14880305786653 -97890,295.14881648992787 -97920,295.14883002970856 -97950,295.1488432395563 -97980,295.1488557740853 -98010,295.14886742741794 -98040,295.1488781531637 -98070,295.1488880563204 -98100,295.14889736099354 -98130,295.1489063614636 -98160,295.14891536619376 -98190,295.14892464465845 -98220,295.148934385505 -98250,295.148944671914 -98280,295.14895547664764 -98310,295.14896667580086 -98340,295.1489780772729 -98370,295.1489894579117 -98400,295.1490006024059 -98430,295.1490113373453 -98460,295.14902155526744 -98490,295.14903122563805 -98520,295.14904039214593 -98550,295.1490491580102 -98580,295.14905766281987 -98610,295.14906605550146 -98640,295.14907446822866 -98670,295.1490829954929 -98700,295.1490916813149 -98730,295.1491005159615 -98760,295.14910944183924 -98790,295.1491183667515 -98820,295.14912718165624 -98850,295.1491357795827 -98880,295.1491440724784 -98910,295.14915200339607 -98940,295.14915955243623 -98970,295.1491667360368 -99000,295.1491736003356 -99030,295.1491802102451 -99060,295.14918663643004 -99090,295.1491929425477 -99120,295.149199174796 -99150,295.1492053553118 -99180,295.14921148015065 -99210,295.14921752175763 -99240,295.1492234351103 -99270,295.14922916618355 -99300,295.14923466112657 -99330,295.1492398745732 -99360,295.1492447757933 -99390,295.1492493518687 -99420,295.14925360764306 -99450,295.1492575627487 -99480,295.1492612464704 -99510,295.1492646914915 -99540,295.1492679276568 -99570,295.14927097677963 -99600,295.1492738492546 -99630,295.1492765428688 -99660,295.149279043806 -99690,295.1492813294768 -99720,295.14928337254094 -99750,295.1492851453477 -99780,295.1492866240241 -99810,295.1492877915693 -99840,295.1492886395349 -99870,295.1492891681443 -99900,295.14928938497565 -99930,295.149289302556 -99960,295.14928893536523 -99990,295.1492882967972 -100020,295.149287396584 -100050,295.14928623906536 -100080,295.149284822512 -100110,295.1492831395161 -100140,295.14928117828885 -100170,295.1492789245651 -100200,295.1492763637477 -100230,295.14927348291354 -100260,295.1492702723651 -100290,295.1492667265117 -100320,295.14926284399814 -100350,295.1492586271274 -100380,295.1492540807388 -100410,295.149249210776 -100440,295.14924402281 -100470,295.14923852076464 -100500,295.14923270603674 -100530,295.1492265771195 -100560,295.14922012974495 -100590,295.1492133574748 -100620,295.1492062526004 -100650,295.1491988071752 -100680,295.1491910139977 -100710,295.1491828673868 -100740,295.14917436364084 -100770,295.149165501134 -100800,295.1491562800679 -100830,295.1491470202655 -100860,295.1491385068404 -100890,295.14913161079465 -100920,295.14912696454496 -100950,295.14912480313905 -100980,295.14912494093744 -101010,295.14912683888446 -101040,295.1491297270388 -101070,295.1491327529911 -101100,295.149135129263 -101130,295.1491362560503 -101160,295.1491358016904 -101190,295.14913373160164 -101220,295.1491302856886 -101250,295.149125912678 -101280,295.1491211761679 -101310,295.1491166504802 -101340,295.1491128244231 -101370,295.14911002809964 -101400,295.1491083927037 -101430,295.1491078468899 -101460,295.1491081469389 -101490,295.1491089326248 -101520,295.1491097971942 -101550,295.14911035861087 -101580,295.1491103201913 -101610,295.14910951160493 -101640,295.149107905281 -101670,295.1491056077785 -101700,295.1491028298487 -101730,295.1490998420873 -101760,295.1490969248197 -101790,295.1490943210123 -101820,295.14909219969854 -101850,295.14909063497987 -101880,295.1490896026283 -101910,295.1490889932278 -101940,295.14908863815987 -101970,295.1490883429628 -102000,295.14908792188066 -102030,295.1490872277941 -102060,295.14908617302 -102090,295.149084738392 -102120,295.1490829702038 -102150,295.14908096663845 -102180,295.14907885689195 -102210,295.1490767771071 -102240,295.14907484738166 -102270,295.1490731535438 -102300,295.14907173625994 -102330,295.1490705885956 -102360,295.1490696616503 -102390,295.1490688765934 -102420,295.1490681405231 -102450,295.1490673631815 -102480,295.1490664716881 -102510,295.14906542104706 -102540,295.14906419908215 -102570,295.1490628255024 -102600,295.1490613457928 -102630,295.149059821416 -102660,295.1490583182809 -102690,295.14905689554445 -102720,295.1490555965517 -102750,295.14905444322216 -102780,295.14905343448675 -102810,295.1490525486591 -102840,295.14905174898564 -102870,295.14905099116646 -102900,295.14905023142404 -102930,295.14904943373887 -102960,295.14904857513534 -102990,295.1490476483265 -103020,295.1490466615257 -103050,295.1490456357176 -103080,295.1490446000737 -103110,295.1490435864401 -103140,295.14904262389234 -103170,295.1490417342489 -103200,295.1490409291952 -103230,295.14904020934296 -103260,295.149039565202 -103290,295.1490389797267 -103320,295.1490384318717 -103350,295.1490379004777 -103380,295.14903736781514 -103410,295.1490368222339 -103440,295.1490362595638 -103470,295.1490356831514 -103500,295.1490351026527 -103530,295.1490345318955 -103560,295.14903398625137 -103590,295.1490334799946 -103620,295.1490330240856 -103650,295.14903262470546 -103680,295.1490322827127 -103710,295.1490319940277 -103740,295.14903175079513 -103770,295.1490315430601 -103800,295.1490313606353 -103830,295.1490311948327 -103860,295.14903103978645 -103890,295.1490308931883 -103920,295.1490307563665 -103950,295.1490306337576 -103980,295.14903053191387 -104010,295.1490304582529 -104040,295.14903041978016 -104070,295.1490304219964 -104100,295.1490304681545 -104130,295.1490305589551 -104160,295.14903069269053 -104190,295.1490308657723 -104220,295.14903107351915 -104250,295.14903131105194 -104280,295.1490315741376 -104310,295.14903185984826 -104340,295.14903216694324 -104370,295.14903249593704 -104400,295.14903284887146 -104430,295.149033205235 -104460,295.14903351159785 -104490,295.14903371047524 -104520,295.1490337638909 -104550,295.14903366367173 -104580,295.14903343142845 -104610,295.1490331121287 -104640,295.1490327641989 -104670,295.1490324484291 -104700,295.1490322176125 -104730,295.1490321085077 -104760,295.1490321372014 -104790,295.1490322983082 -104820,295.1490325677833 -104850,295.1490329085484 -104880,295.149033277743 -104910,295.14903363425606 -104940,295.1490339452697 -104970,295.1490341908288 -105000,295.1490343658655 -105030,295.1490344795825 -105060,295.1490345525412 -105090,295.1490346121477 -105120,295.1490346874319 -105150,295.1490348040435 -105180,295.14903498027246 -105210,295.14903522465363 -105240,295.1490355354041 -105270,295.14903590161566 -105300,295.1490363058435 -105330,295.1490367275333 -105360,295.1490371466457 -105390,295.1490375468599 -105420,295.1490379178695 -105450,295.1490382564747 -105480,295.14903856640274 -105510,295.1490388570056 -105540,295.14903914115206 -105570,295.1490394327376 -105600,295.14903974425846 -105630,295.14904008484285 -105660,295.14904045902216 -105690,295.14904086637586 -105720,295.149041302027 -105750,295.14904175782823 -105780,295.14904222397763 -105810,295.1490426907591 -105840,295.1490431501071 -105870,295.14904359675626 -105900,295.14904402882223 -105930,295.14904444777324 -105960,295.14904485785195 -105990,295.149045265095 -106020,295.1490456761488 -106050,295.1490460970956 -106080,295.1490465324831 -106110,295.14904698469786 -106140,295.149047453754 -106170,295.1490479374939 -106200,295.1490484321284 -106230,295.149048932997 -106260,295.1490494354015 -106290,295.1490499353684 -106320,295.1490504302226 -106350,295.14905091889324 -106380,295.1490514019275 -106410,295.149051881237 -106440,295.149052359643 -106470,295.1490528403145 -106500,295.1490533262022 -106530,295.14905381956106 -106560,295.1490543216327 -106590,295.1490548325248 -106620,295.1490553512889 -106650,295.1490558761658 -106680,295.1490564049413 -106710,295.14905693534536 -106740,295.1490574654226 -106770,295.14905799381694 -106800,295.1490585199315 -106830,295.1490590439484 -106860,295.14905956671885 -106890,295.1490600895531 -106920,295.1490606139545 -106950,295.14906114134743 -106980,295.14906167284283 -107010,295.1490622090782 -107040,295.14906275015034 -107070,295.1490632956441 -107100,295.14906384474284 -107130,295.1490643963947 -107160,295.14906494950293 -107190,295.14906550310565 -107220,295.14906605651674 -107250,295.14906660940886 -107280,295.1490671618289 -107310,295.1490677141516 -107340,295.1490682669823 -107370,295.1490688210321 -107400,295.1490693769867 -107430,295.1490699353923 -107460,295.14907049657484 -107490,295.14907106060355 -107520,295.14907162730054 -107550,295.14907219629004 -107580,295.1490727670762 -107610,295.14907333913334 -107640,295.1490739119932 -107670,295.1490744853143 -107700,295.14907505892484 -107730,295.14907563283305 -107760,295.1490762072076 -107790,295.1490767823336 -107820,295.1490773585533 -107850,295.1490779362038 -107880,295.149078515561 -107910,295.1490790967994 -107940,295.14907967997283 -107970,295.1490802650165 -108000,295.14908085176944 -108030,295.1490815192829 -108060,295.1490824498477 -108090,295.1490838186428 -108120,295.14908571199726 -108150,295.1490881002701 -108180,295.1490908502043 -108210,295.1490937589636 -108240,295.14909659702874 -108270,295.14909915083337 -108300,295.1491012582421 -108330,295.1491028319634 -108360,295.1491038683201 -108390,295.1491044413553 -108420,295.1491046846263 -108450,295.1491047648388 -108480,295.1491048524277 -108510,295.14910509422185 -108540,295.14910559250296 -108570,295.1491063933154 -108600,295.1491074850905 -108630,295.14910880684914 -108660,295.1491102637358 -108690,295.1491117466408 -108720,295.1491131522944 -108750,295.1491144004777 -108780,295.1491154457855 -108810,295.14911628251235 -108840,295.14911694250094 -108870,295.1491174869678 -108900,295.149117994218 -108930,295.1491185456597 -108960,295.14911921258454 -108990,295.14912004582146 -109020,295.1491210697025 -109050,295.14912228093243 -109080,295.1491236520906 -109110,295.1491251387558 -109140,295.14912668874035 -109170,295.14912825171746 -109200,295.1491297876161 -109230,295.14913127251845 -109260,295.14913270132104 -109290,295.14913408702563 -109320,295.1491354570925 -109350,295.1491368477332 -109380,295.1491382972774 -109410,295.14913983979386 -109440,295.1491414999944 -109470,295.1491432901408 -109500,295.14914520927783 -109530,295.1491472447016 -109560,295.14914937521144 -109590,295.14915157544465 -109620,295.1491538204768 -109650,295.14915608990617 -109680,295.14915837079826 -109710,295.14916065911103 -109740,295.1491629595106 -109770,295.14916528375767 -109800,295.14916764806594 -109830,295.1491700699644 -109860,295.14917256522807 -109890,295.14917514537586 -109920,295.1491778160963 -109950,295.149180576774 -109980,295.14918342109183 -110010,295.14918633850976 -110040,295.1491893162936 -110070,295.14919234170856 -110100,295.1491954040024 -110130,295.14919849586846 -110160,295.1492016141996 -110190,295.14920476007376 -110220,295.149207938047 -110250,295.14921115493496 -110280,295.14921441833235 -110310,295.14921773513964 -110340,295.1492211103387 -110370,295.1492245461967 -110400,295.14922804198915 -110430,295.1492315942395 -110460,295.14923519738767 -110490,295.14923884473706 -110520,295.14924252949845 -110550,295.1492462457492 -110580,295.1492499891592 -110610,295.1492537573839 -110640,295.1492575500941 -110670,295.1492613686688 -110700,295.1492652156356 -110730,295.1492690939742 -110760,295.1492730064111 -110790,295.1492769548217 -110820,295.1492809398302 -110850,295.1492849606532 -110880,295.14928901519096 -110910,295.1492931003281 -110940,295.1492972123744 -110970,295.1493013475601 -111000,295.1493055024998 -111030,295.1493096745501 -111060,295.1493138620144 -111090,295.14931806417303 -111120,295.14932228115265 -111150,295.1493265136702 -111180,295.14933076270614 -111210,295.1493350291673 -111240,295.1493393135965 -111270,295.1493436159719 -111300,295.14934793562134 -111330,295.1493522712548 -111360,295.149356621099 -111390,295.1493609831019 -111420,295.14936535516745 -111450,295.14936973537937 -111480,295.14937412217745 -111510,295.14937851446257 -111540,295.1493829116197 -111570,295.149387313463 -111600,295.14939172011964 -111630,295.1493962405011 -111660,295.14940113248645 -111690,295.1494066617542 -111720,295.14941299012264 -111750,295.1494201298761 -111780,295.1494279485471 -111810,295.1494362043096 -111840,295.149444597074 -111870,295.149452823862 -111900,295.1494606289853 -111930,295.14946784151925 -111960,295.1494743952512 -111990,295.1494803295204 -112020,295.1494857726181 -112050,295.1494909121211 -112080,295.14949595827034 -112110,295.1495011070802 -112140,295.1495065092787 -112170,295.14951224964545 -112200,295.14951833917075 -112230,295.14952481417674 -112260,295.1495317482641 -112290,295.14953919062054 -112320,295.14954711038433 -112350,295.1495553838976 -112380,295.14956381957904 -112410,295.14957220063667 -112440,295.1495803287023 -112470,295.14958805837955 -112500,295.1495953180372 -112530,295.14960215464373 -112560,295.1496087236952 -112590,295.14961523434107 -112620,295.14962188943764 -112650,295.1496288425291 -112680,295.14963617579144 -112710,295.1496438955123 -112740,295.149651940781 -112770,295.14966020158084 -112800,295.14966854249826 -112830,295.1496768279674 -112860,295.14968494499806 -112890,295.14969281998447 -112920,295.1497004274107 -112950,295.14970778978346 -112980,295.14971496963807 -113010,295.149722055783 -113040,295.1497291464809 -113070,295.14973633249303 -113100,295.14974368278166 -113130,295.14975123503547 -113160,295.149758992188 -113190,295.1497669249826 -113220,295.1497749796222 -113250,295.14978308880006 -113280,295.14979118401754 -113310,295.149799207084 -113340,295.1498071190208 -113370,295.14981490517204 -113400,295.1498225759691 -113430,295.1498301630436 -113460,295.1498377116642 -113490,295.1498452713956 -113520,295.14985288690826 -113550,295.1498605905213 -113580,295.1498683975226 -113610,295.1498763047438 -113640,295.1498842923064 -113670,295.14989232795307 -113700,295.14990037301465 -113730,295.1499083888769 -113760,295.14991634283746 -113790,295.1499242124429 -113820,295.1499319877352 -113850,295.1499396712305 -113880,295.149947275849 -113910,295.149954821326 -113940,295.14996232984106 -113970,295.1499698216569 -114000,295.1499773114868 -114030,295.1499848061189 -114060,295.14999230357336 -114090,295.14999979378365 -114120,295.1500072605485 -114150,295.1500146843121 -114180,295.1500220452375 -114210,295.1500293260381 -114240,295.15003651412485 -114270,295.1500436027787 -114300,295.1500505912489 -114330,295.15005748386017 -114360,295.150064288371 -114390,295.15007101392314 -114420,295.1500776689589 -114450,295.15008425945297 -114480,295.1500907877196 -114510,295.15009725193784 -114540,295.1501036464053 -114570,295.15010996241006 -114600,295.1501161895188 -114630,295.15012231702906 -114660,295.1501283353325 -114690,295.1501342369712 -114720,295.15014001724273 -114750,295.1501456742976 -114780,295.15015120875927 -114810,295.15015662297566 -114840,295.15016192005976 -114870,295.15016710289734 -114900,295.15017217328807 -114930,295.1501771313494 -114960,295.15018197525643 -114990,295.15018670132895 -115020,295.15019130441857 -115050,295.1501957785039 -115080,295.1502001173765 -115110,295.1502043152953 -115140,295.1502083675051 -115170,295.1502122705471 -115200,295.15021602232844 -115230,295.17967644582774 -115260,295.19881968644864 -115290,295.20561033921 -115320,295.2002876140063 -115350,295.1851181588596 -115380,295.1637134382816 -115410,295.1403388606457 -115440,295.1191095578493 -115470,295.10334758498385 -115500,295.0951330796272 -115530,295.09506308415666 -115560,295.1023296846715 -115590,295.1149939167105 -115620,295.1304563823411 -115650,295.14592461262845 -115680,295.1589034939795 -115710,295.1675834982383 -115740,295.1710490727809 -115770,295.16934935286486 -115800,295.16337458340763 -115830,295.1546156256392 -115860,295.14485871413973 -115890,295.1358584184756 -115920,295.12906108088754 -115950,295.1253937340963 -115980,295.1251506167831 -116010,295.12804531506924 -116040,295.13332131037964 -116070,295.1398814639692 -116100,295.1465398280688 -116130,295.1522204612653 -116160,295.15612518429907 -116190,295.1578358143328 -116220,295.1573412198457 -116250,295.15499301090205 -116280,295.15139334052884 -116310,295.1472979045457 -116340,295.1434820402826 -116370,295.140541274828 -116400,295.13890254021845 -116430,295.1387241417835 -116460,295.1398976376946 -116490,295.1421063002221 -116520,295.1448978174516 -116550,295.14777492862464 -116580,295.15027669607485 -116610,295.1520468187973 -116640,295.1528898944004 -116670,295.1527906709721 -116700,295.1518831903946 -116730,295.1504190853605 -116760,295.14871477792667 -116790,295.14709337904134 -116820,295.1458273845276 -116850,295.1451009803153 -116880,295.14499144542395 -116910,295.1454548675853 -116940,295.1463903855218 -116970,295.1475913947605 -117000,295.1488458329593 -117030,295.1499592452653 -117060,295.1507595839204 -117090,295.15117464735994 -117120,295.1511753463731 -117150,295.15082952987245 -117180,295.1502354505548 -117210,295.1495252052123 -117240,295.1488464487929 -117270,295.1483074169365 -117300,295.1479851863263 -117330,295.1479248367431 -117360,295.1481186115564 -117390,295.1485166484542 -117420,295.1490410974698 -117450,295.1495992198363 -117480,295.1501010537113 -117510,295.1504754197014 -117540,295.1506803061083 -117570,295.1507066050317 -117600,295.15057582925925 -117630,295.1503331218142 -117660,295.1500372160217 -117690,295.1497492412669 -117720,295.14952230313 -117750,295.14939348962247 -117780,295.14937939559024 -117810,295.14947554792104 -117840,295.1496594119204 -117870,295.1498960912943 -117900,295.1501454802595 -117930,295.15036951867654 -117960,295.15053833048626 -117990,295.1506343355704 -118020,295.1506538744281 -118050,295.1506063366179 -118080,295.15051120421185 -118110,295.15039372671595 -118140,295.15028009592675 -118170,295.15019297935186 -118200,295.1501481189456 -118230,295.1501524486455 -118260,295.1502038824602 -118290,295.1502926300274 -118320,295.15040365703464 -118350,295.15051975774185 -118380,295.1506246616012 -118410,295.1507056519869 -118440,295.15075531218787 -118470,295.15077220051927 -118500,295.1507604562426 -118530,295.1507285161914 -118560,295.1506872511644 -118590,295.15064789496233 -118620,295.1506201337401 -118650,295.1506106573641 -118680,295.15062236519896 -118710,295.1506542890376 -118740,295.1507021695518 -118770,295.150759520388 -118800,295.1508189503582 -118830,295.1508732949832 -118860,295.1509165820153 -118890,295.1509449967049 -118920,295.1509574668537 -118950,295.1509556469947 -118980,295.15094336364524 -119010,295.15092572702576 -119040,295.1509081296996 -119070,295.1508953171999 -119100,295.1508906709193 -119130,295.1508957943378 -119160,295.15091043784633 -119190,295.1509327395361 -119220,295.150959709163 -119250,295.15098784904825 -119280,295.15101379368315 -119310,295.1510348591579 -119340,295.15104942023254 -119370,295.1510570704587 -119400,295.151058561747 -119430,295.1510555569607 -119460,295.1510502567282 -119490,295.1510449761363 -119520,295.15104174728066 -119550,295.1510420112536 -119580,295.15104644146834 -119610,295.1510549138442 -119640,295.15106661322073 -119670,295.1510802437613 -119700,295.1510942971818 -119730,295.15110732789395 -119760,295.1511181884888 -119790,295.15112619012945 -119820,295.1511311695786 -119850,295.1511334613593 -119880,295.1511337896999 -119910,295.1511331068433 -119940,295.15113241044014 -119970,295.151132572736 -120000,295.1511342088083 -120030,295.151137601694 -120060,295.15114269086627 -120090,295.15114911925974 -120120,295.15115632477927 -120150,295.15116365628074 -120180,295.1511704920263 -120210,295.1511763405122 -120240,295.151180908634 -120270,295.15118412922845 -120300,295.1511861477153 -120330,295.1511872744811 -120360,295.151187914696 -120390,295.1511884897801 -120420,295.15118936458646 -120450,295.1511907918871 -120480,295.15119288160594 -120510,295.15119559731187 -120540,295.1511987776671 -120570,295.151202176605 -120600,295.151205513546 -120630,295.1512085238412 -120660,295.15121100077005 -120690,295.151212823588 -120720,295.1512139691264 -120750,295.15121450678515 -120780,295.1512145790118 -120810,295.15121437158047 -120840,295.1512140795602 -120870,295.1512138751777 -120900,295.1512138828141 -120930,295.15121416455025 -120960,295.15121471751434 -120990,295.1512154822036 -121020,295.1512163592393 -121050,295.1512172308851 -121080,295.15121798324947 -121110,295.1512185254035 -121140,295.1512188025573 -121170,295.1512188017345 -121200,295.15121854980083 -121230,295.1512181049944 -121260,295.15121754406505 -121290,295.1512169476421 -121320,295.1512163864661 -121350,295.1512159106972 -121380,295.15121554376606 -121410,295.15121528131726 -121440,295.1512150948873 -121470,295.1512149392065 -121500,295.1512147615252 -121530,295.1512145111945 -121560,295.15121414788166 -121590,295.15121364717965 -121620,295.1512130029698 -121650,295.1512122264786 -121680,295.1512113425321 -121710,295.15121038393227 -121740,295.15120938509267 -121770,295.1512083760766 -121800,295.15120737798964 -121830,295.1512064003542 -121860,295.15120544069566 -121890,295.151204486175 -121920,295.15120351678144 -121950,295.1512025093863 -121980,295.1512014418907 -122010,295.151200296765 -122040,295.1511990634525 -122070,295.15119773935567 -122100,295.15119632939025 -122130,295.15119484433166 -122160,295.1511932983573 -122190,295.15119170628066 -122220,295.15119008096985 -122250,295.15118843136435 -122280,295.1511867613565 -122310,295.15118506963404 -122340,295.1511833504092 -122370,295.1511815948185 -122400,295.15117979268945 -122430,295.15117800754007 -122460,295.1511764304754 -122490,295.1511752953464 -122520,295.1511747674326 -122550,295.15117488698155 -122580,295.1511755716974 -122610,295.1511766504124 -122640,295.1511779054351 -122670,295.1511791135563 -122700,295.151180081736 -122730,295.1511806742893 -122760,295.1511808284536 -122790,295.1511805566164 -122820,295.15117993584835 -122850,295.1511790876708 -122880,295.15117815248084 -122910,295.1511772635227 -122940,295.15117652483536 -122970,295.1511759964422 -123000,295.1511756884847 -123030,295.15117556433046 -123060,295.1511755511874 -123090,295.1511755556638 -123120,295.15117548115404 -123150,295.1511752439544 -123180,295.15117478554725 -123210,295.1511740794042 -123240,295.15117313174227 -123270,295.1511719767435 -123300,295.1511706676143 -123330,295.1511692654144 -123360,295.15116782775186 -123390,295.1511663992596 -123420,295.15116500523686 -123450,295.1511636491935 -123480,295.15116231430085 -123510,295.15116096809635 -123540,295.15115956931294 -123570,295.15115807546835 -123600,295.1511564498673 -123630,295.15115466690713 -123660,295.1511527149792 -123690,295.15115059673224 -123720,295.1511483269299 -123750,295.1511459285126 -123780,295.15114342770926 -123810,295.1511408491149 -123840,295.1511382115604 -123870,295.1511355253811 -123900,295.15113279139376 -123930,295.15113000157453 -123960,295.1511271411458 -123990,295.151124191576 -124020,295.1511211338955 -124050,295.1511179517412 -124080,295.1511146336498 -124110,295.1511111742946 -124140,295.1511075745705 -124170,295.1511038406352 -124200,295.1510999821862 -124230,295.15109600956544 -124260,295.1510919297546 -124290,295.15108774330525 -124320,295.15108344418104 -124350,295.15107902243915 -124380,295.1510744680511 -124410,295.15106977419964 -124440,295.15106493930784 -124470,295.1510599677832 -124500,295.1510548696864 -124530,295.1510496595293 -124560,295.1510443544313 -124590,295.1510389719533 -124620,295.1510335279899 -124650,295.1510280350732 -124680,295.15102250132435 -124710,295.15101693013395 -124740,295.15101132049443 -124770,295.151005667789 -124800,295.1509999647806 -124830,295.1509942025676 -124860,295.1509883713542 -124890,295.15098246100075 -124920,295.1509764613988 -124950,295.1509703627384 -124980,295.1509641557116 -125010,295.15095783165486 -125040,295.1509513826196 -125070,295.1509448013678 -125100,295.1509380813084 -125130,295.1509312164022 -125160,295.15092420106083 -125190,295.1509170300587 -125220,295.1509096984672 -125250,295.1509022016165 -125280,295.15089453508443 -125310,295.1508866947115 -125340,295.1508786766319 -125370,295.15087047731134 -125400,295.1508620935817 -125430,295.1508535226624 -125460,295.1508447621642 -125490,295.1508358100725 -125520,295.150826664713 -125550,295.1508173247031 -125580,295.1508077888968 -125610,295.1507980563298 -125640,295.15078812617065 -125670,295.15077799768426 -125700,295.15076767020884 -125730,295.1507571431473 -125760,295.1507464159707 -125790,295.1507354882293 -125820,295.1507243595684 -125850,295.1507130297409 -125880,295.1507014986175 -125910,295.1506897661869 -125940,295.15067783254943 -125970,295.15066569790224 -126000,295.1506533625182 -126030,295.15064079713125 -126060,295.1506278707289 -126090,295.1506142923739 -126120,295.1505996316858 -126150,295.1505834179057 -126180,295.1505652626373 -126210,295.150544951654 -126240,295.15052248367766 -126270,295.15049806139166 -126300,295.1504720491264 -126330,295.1504449103536 -126360,295.1504171360875 -126390,295.15038917521247 -126420,295.15036137755027 -126450,295.1503339581854 -126480,295.1503069872583 -126510,295.1502804044813 -126540,295.15025405336644 -126570,295.1502277273406 -126600,295.1502012187965 -126630,295.1501743626081 -126660,295.1501470674546 -126690,295.1501193310128 -126720,295.1500912381766 -126750,295.1500629443848 -126780,295.15003464840873 -126810,295.1500065602683 -126840,295.1499788701657 -126870,295.1499517235476 -126900,295.1499252058486 -126930,295.14989933848165 -126960,295.1498740855977 -126990,295.1498493693814 -127020,295.149825090458 -127050,295.14980114948725 -127080,295.14977746622844 -127110,295.1497539931622 -127140,295.1497307219731 -127170,295.149707682563 -127200,295.1496849355502 -127230,295.14966256019835 -127260,295.14964064028123 -127290,295.1496192504744 -127320,295.1495984455073 -127350,295.1495782536158 -127380,295.1495586749563 -127410,295.1495396847427 -127440,295.14952124010324 -127470,295.1495032891348 -127500,295.1494857804223 -127530,295.14946867139287 -127560,295.1494519342369 -127590,295.1494355586665 -127620,295.1494195513871 -127650,295.14940393271706 -127680,295.14938873122605 -127710,295.1493739774991 -127740,295.1493596981679 -127770,295.1493459111855 -127800,295.1493326230116 -127830,295.1493198276827 -127860,295.14930750750165 -127890,295.1492956355268 -127920,295.14928417983884 -127950,295.149273108754 -127980,295.1492623956637 -128010,295.14925202241795 -128040,295.14924198077125 -128070,295.1492322719498 -128100,295.14922290469553 -128130,295.1492138922979 -128160,295.1492052491964 -128190,295.14919698775043 -128220,295.1491891156979 -128250,295.1491816346644 -128280,295.1491745398694 -128310,295.1491678209592 -128340,295.1491614637079 -128370,295.14915545221703 -128400,295.14914977119133 -128430,295.14914440790585 -128460,295.14913935356805 -128490,295.14913460391045 -128520,295.1491301589955 -128550,295.1491260223477 -128580,295.14912219962827 -128610,295.1491186971228 -128640,295.14911552031333 -128670,295.1491126727679 -128700,295.1491101554975 -128730,295.1491079668436 -128760,295.1491061028574 -128790,295.149104558059 -128820,295.1491033264084 -128850,295.1491024023072 -128880,295.14910178145766 -128910,295.14910146145263 -128940,295.14910144202463 -128970,295.1491017249492 -129000,295.14910231365434 -129030,295.149103212633 -129060,295.14910442677683 -129090,295.1491059607526 -129120,295.1491078185207 -129150,295.1491100030631 -129180,295.1491125163448 -129210,295.1491153594923 -129240,295.1491185331371 -129270,295.1491220378511 -129300,295.14912587459304 -129330,295.1491300450902 -129360,295.14913455210103 -129390,295.1491393995274 -129420,295.1491445923756 -129450,295.1491501365897 -129480,295.149156038801 -129510,295.14916230604433 -129540,295.1491689454976 -129570,295.1491759642845 -129600,295.14918336937285 -129630,295.14919100963635 -129660,295.1491984327 -129690,295.14920501870955 -129720,295.1492102063526 -129750,295.1492136514007 -129780,295.14921528270565 -129810,295.1492152834959 -129840,295.1492140307938 -129870,295.14921201417394 -129900,295.1492097478684 -129930,295.1492076885212 -129960,295.14920617013274 -129990,295.14920536511914 -130020,295.14920527573247 -130050,295.14920575454505 -130080,295.14920654771976 -130110,295.14920735144074 -130140,295.1492078706339 -130170,295.1492078698908 -130200,295.149207208906 -130230,295.1492058581419 -130260,295.1492038941796 -130290,295.14920147765685 -130320,295.1491988192991 -130350,295.149196140971 -130380,295.14919363878954 -130410,295.1491914542656 -130440,295.14918965747705 -130470,295.1491882438483 -130500,295.14918714366905 -130530,295.1491862414457 -130560,295.1491854008317 -130590,295.14918449040096 -130620,295.1491834058611 -130650,295.14918208536847 -130680,295.14918051610545 -130710,295.14917873193065 -130740,295.1491768034244 -130770,295.1491748227871 -130800,295.14917288665373 -130830,295.1491710799178 -130860,295.1491694631683 -130890,295.149168065468 -130920,295.1491668831283 -130950,295.1491658840654 -130980,295.14916501642995 -131010,295.149164219626 -131040,295.1491634356288 -131070,295.149162618679 -131100,295.1491617419006 -131130,295.1491608000583 -131160,295.1491598083923 -131190,295.1491587981365 -131220,295.14915780981266 -131250,295.1491568856553 -131280,295.14915606252515 -131310,295.14915536644577 -131340,295.1491548095096 -131370,295.1491543894254 -131400,295.1491540915086 -131430,295.1491538928318 -131460,295.1491537678424 -131490,295.14915369388774 -131520,295.1491536551567 -131550,295.14915364449604 -131580,295.14915366337834 -131610,295.1491537205371 -131640,295.1491538296996 -131670,295.1491540067966 -131700,295.14915426707887 -131730,295.14915462261484 -131760,295.14915508056527 -131790,295.149155642464 -131820,295.1491563045226 -131850,295.14915705879633 -131880,295.1491578949214 -131910,295.1491588020731 -131940,295.1491597707942 -131970,295.14916079440326 -132000,295.1491618697897 -132030,295.14916299752736 -132060,295.1491641813576 -132090,295.1491654271942 -132120,295.1491667418661 -132150,295.14916813183584 -132180,295.1491696021104 -132210,295.1491711555072 -132240,295.14917279236033 -132270,295.14917451067146 -132300,295.1491763066334 -132330,295.14917817540027 -132360,295.14918011195016 -132390,295.14918211188666 -132420,295.14918417205126 -132450,295.1491862908643 -132480,295.1491884683657 -132510,295.14919070598086 -132540,295.1491930060782 -132570,295.14919537141606 -132600,295.1491978045813 -132630,295.14920030751625 -132660,295.1492028812026 -132690,295.1492055255405 -132720,295.1492082394215 -132750,295.1492110210155 -132780,295.1492138682462 -132810,295.1492167792824 -132840,295.1492197528572 -132870,295.14922278836445 -132900,295.14922588579583 -132930,295.14922904560524 -132960,295.149232268542 -132990,295.1492355554703 -133020,295.14923890719075 -133050,295.1492423242904 -133080,295.1492458070459 -133110,295.1492493553948 -133140,295.1492529689738 -133170,295.1492566472093 -133200,295.14926038943946 -133230,295.1492641983931 -133260,295.149268086289 -133290,295.14927208009584 -133320,295.14927621992405 -133350,295.1492805493945 -133380,295.14928510318754 -133410,295.1492898977965 -133440,295.14929492805106 -133470,295.14930016870267 -133500,295.1493055792676 -133530,295.1493111106156 -133560,295.1493167121913 -133590,295.14932233883906 -133620,295.1493279562143 -133650,295.14933354397886 -133680,295.1493390964139 -133710,295.14934462059136 -133740,295.1493501326633 -133770,295.1493556530858 -133800,295.149361201686 -133830,295.1493667934078 -133860,295.14937243537247 -133890,295.14937812560566 -133920,295.14938385346335 -133950,295.1493896015073 -133980,295.14939534835946 -134010,295.1494010719545 -134040,295.1494067526017 -134070,295.14941237536186 -134100,295.1494179314102 -134130,295.1494234182623 -134160,295.14942883894014 -134190,295.149434200328 -134220,295.14943951107495 -134250,295.1494447794412 -134280,295.1494500114525 -134310,295.14945520963835 -134340,295.1494603725019 -134370,295.14946549473376 -134400,295.14947056805505 -134430,295.14947558248184 -134460,295.1494805277553 -134490,295.1494853946801 -134520,295.14949017615606 -134550,295.14949486776226 -134580,295.14949946784145 -134610,295.1495039771231 -134640,295.1495083979951 -134670,295.1495127335821 -134700,295.1495169868053 -134730,295.14952115958056 -134760,295.1495252522766 -134790,295.1495292634939 -134820,295.1495331901696 -134850,295.1495370279546 -134880,295.14954077177305 -134910,295.14954441644966 -134940,295.1495479572941 -134970,295.1495513905474 -135000,295.14955471363226 -135030,295.14955792597124 -135060,295.149561030769 -135090,295.14956403614457 -135120,295.1495669539925 -135150,295.1495697968717 -135180,295.14957257457894 -135210,295.149575291837 -135240,295.1495779475327 -135270,295.1495805352282 -135300,295.1495830444932 -135330,295.1495854626954 -135360,295.14958777695296 -135390,295.1495899759548 -135420,295.1495920513653 -135450,295.14959399860766 -135480,295.14959581694524 -135510,295.1495975089176 -135540,295.1495990792945 -135570,295.1496005337743 -135600,295.1496018776708 -135630,295.14960311480854 -135660,295.1496042467877 -135690,295.14960527270347 -135720,295.14960618931786 -135750,295.14960699160827 -135780,295.1496076735614 -135810,295.14960822905334 -135840,295.1496086526605 -135870,295.14960894027126 -135900,295.14960908941856 -135930,295.1496090993048 -135960,295.14960897054925 -135990,295.1496087047266 -136020,295.14960830379766 -136050,295.1496077695371 -136080,295.14960710305513 -136110,295.1496063044821 -136140,295.1496053728528 -136170,295.1496043061877 -136200,295.1496031017379 -136230,295.1496017563346 -136260,295.1496002667749 -136290,295.149598630174 -136320,295.1495968442304 -136350,295.1495949073666 -136380,295.14959281873683 -136410,295.1495905781128 -136440,295.14958818568044 -136470,295.1495856417899 -136500,295.14958294670646 -136530,295.14958010040334 -136560,295.1495771024262 -136590,295.1495739518456 -136620,295.149570647295 -136650,295.1495671870797 -136680,295.1495635693307 -136710,295.1495597921732 -136740,295.1495558538798 -136770,295.14955175298485 -136800,295.14954748834435 -136830,295.1495431305165 -136860,295.14953887322133 -136890,295.14953494788057 -136920,295.1495315137525 -136950,295.1495286050404 -136980,295.1495261374924 -137010,295.1495239447747 -137040,295.14952182133936 -137070,295.1495195622053 -137100,295.14951699648475 -137130,295.1495140120728 -137160,295.14951056874776 -137190,295.1495066982592 -137220,295.1495024923357 -137250,295.14949808175857 -137280,295.1494936109823 -137310,295.1494892130858 -137340,295.1494849892383 -137370,295.14948099564083 -137400,295.1494772393332 -137430,295.1494736826315 -137460,295.1494702545497 -137490,295.14946686656685 -137520,295.14946342965106 -137550,295.14945986956616 -137580,295.14945613808135 -137610,295.14945221864235 -137640,295.14944812613675 -137670,295.1494439014126 -137700,295.14943960201947 -137730,295.1494352911142 -137760,295.1494310265828 -137790,295.1494268521665 -137820,295.1494227918768 -137850,295.1494188482821 -137880,295.149415004549 -137910,295.14941122949955 -137940,295.149407484528 -137970,295.14940373102377 -138000,295.1493999370081 -138030,295.14939608195846 -138060,295.1493921592038 -138090,295.14938817574654 -138120,295.1493841498112 -138150,295.149380106768 -138180,295.14937607428425 -138210,295.14937207759505 -138240,295.1493681356711 -138270,295.14936425883104 -138300,295.149360448045 -138330,295.1493566958695 -138360,295.1493529886853 -138390,295.1493493097282 -138420,295.1493456423232 -138450,295.14934197275966 -138480,295.1493382923656 -138510,295.1493345985183 -138540,295.14933089453405 -138570,295.1493271885738 -138600,295.14932349185096 -138630,295.14931981688096 -138660,295.1493161763482 -138690,295.1493125821584 -138720,295.149309044116 -138750,295.14930556842165 -138780,295.1493021566926 -138810,295.1492988059913 -138840,295.1492955098268 -138870,295.1492922597415 -138900,295.14928904706403 -138930,295.14928586449736 -138960,295.14928270729564 -138990,295.149279573877 -139020,295.1492764658347 -139050,295.14927338741666 -139080,295.1492703446207 -139110,295.14926734409744 -139140,295.1492643920612 -139170,295.14926149338737 -139200,295.1492586510278 -139230,295.14925586580824 -139260,295.1492531366016 -139290,295.1492504608097 -139320,295.1492478350394 -139350,295.1492452558388 -139380,295.1492427203664 -139410,295.14924022688564 -139440,295.1492377750231 -139470,295.1492353657701 -139500,295.1492330012562 -139530,295.1492306843545 -139560,295.14922841820487 -139590,295.1492262057411 -139620,295.1492240493021 -139650,295.1492219503831 -139680,295.1492199095533 -139710,295.1492179265366 -139740,295.1492160004248 -139770,295.1492141299732 -139800,295.1492123139219 -139830,295.1492105512847 -139860,295.1492088415624 -139890,295.1492071848518 -139920,295.1492055818438 -139950,295.14920403372264 -139980,295.14920254199313 -140010,295.14920110827325 -140040,295.1491997340896 -140070,295.1491984207101 -140100,295.1491971690385 -140130,295.1491959795806 -140160,295.149194852482 -140190,295.1491937876222 -140220,295.1491927847439 -140250,295.14919184359303 -140280,295.1491909640439 -140310,295.1491901461908 -140340,295.14918939039444 -140370,295.14918869728007 -140400,295.1491880676929 -140430,295.1491872199149 -140460,295.14918538828 -140490,295.1491816584282 -140520,295.149175399926 -140550,295.14916647994403 -140580,295.1491552449449 -140610,295.149142381821 -140640,295.14912874794106 -140670,295.1491152093819 -140700,295.14910250237915 -140730,295.1490911298739 -140760,295.1490813047477 -140790,295.1490729457514 -140820,295.14906572278613 -140850,295.1490591393235 -140880,295.1490526341769 -140910,295.14904568333367 -140940,295.1490378847001 -140970,295.14902901339696 -141000,295.1490190415233 -141030,295.1490081228772 -141060,295.1489965489035 -141090,295.1489846862676 -141120,295.14897290842566 -141150,295.1489615332571 -141180,295.148950776544 -141210,295.1489407273973 -141240,295.14893134741897 -141270,295.14892249123216 -141300,295.14891394269233 -141330,295.1489054590712 -141360,295.1488968149807 -141390,295.1488878387691 -141420,295.1488784360441 -141450,295.1488685977815 -141480,295.14885839330435 -141510,295.1488479509048 -141540,295.1488374306488 -141570,295.14882699473435 -141600,295.148816780614 -141630,295.14880688108025 -141660,295.14879733390416 -141690,295.14878812174743 -141720,295.1487791812749 -141750,295.1487704189709 -141780,295.1487617303082 -141810,295.1487530187112 -141840,295.1487442111686 -141870,295.1487352682406 -141900,295.1487261873835 -141930,295.1487169997435 -141960,295.148707761647 -141990,295.1486985427708 -142020,295.1486894133193 -142050,295.1486804324572 -142080,295.14867163979545 -142110,295.1486630510296 -142140,295.14865465801995 -142170,295.14864643282885 -142200,295.1486383346217 -142230,295.1486303156346 -142260,295.14862232358024 -142290,295.1486143041282 -142320,295.14860620750545 -142350,295.14859799799467 -142380,295.1485896616367 -142410,295.1485812085905 -142440,295.1485726698351 -142470,295.1485640900932 -142500,295.1485555192493 -142530,295.1485470040199 -142560,295.148538581088 -142590,295.1485302725486 -142620,295.14852208415857 -142650,295.1485140064291 -142680,295.14850601811946 -142710,295.14849809130385 -142740,295.1484901969943 -142770,295.14848231031834 -142800,295.1484744144344 -142830,295.1484665026693 -142860,295.1484585787128 -142890,295.1484506550481 -142920,295.1484427500963 -142950,295.14843488468534 -142980,295.14842707846844 -143010,295.14841934687314 -143040,295.1484116990462 -143070,295.1484041370558 -143100,295.1483966563657 -143130,295.1483892473677 -143160,295.14838189759774 -143190,295.1483745941944 -143220,295.1483673261596 -143250,295.148360086071 -143280,295.1483528710189 -143310,295.14834568269663 -143340,295.1483385267191 -143370,295.1483314113672 -143400,295.14832434602977 -143430,295.1483173396371 -143460,295.14831039934995 -143490,295.1483035296971 -143520,295.1482967322592 -143550,295.1482900058946 -143580,295.1482833474136 -143610,295.14827675254173 -143640,295.1482702169818 -143670,295.14826373738856 -143700,295.14825731210306 -143730,295.148250941552 -143760,295.1482446282816 -143790,295.1482383766606 -143820,295.14823219233904 -143850,295.1482260815802 -143880,295.1482200505913 -143910,295.1482141049673 -143940,295.1482082493287 -143970,295.1482024871952 -144000,295.1481968210906 -144030,295.1481911119458 -144060,295.1481849779558 -144090,295.1481779644046 -144120,295.1481697627725 -144150,295.1481603176352 -144180,295.14814981494345 -144210,295.14813860966547 -144240,295.1481271390806 -144270,295.1481158414568 -144300,295.14810508708064 -144330,295.14809512718534 -144360,295.1480860664428 -144390,295.1480778619496 -144420,295.1480703468748 -144450,295.1480632724596 -144480,295.1480563593194 -144510,295.148049348354 -144540,295.14804204274606 -144570,295.1480343349907 -144600,295.1480262160671 -144630,295.1480177671502 -144660,295.1480091371178 -144690,295.1480005111281 -144720,295.1479920764676 -144750,295.14798399166455 -144780,295.1479763636781 -144810,295.1479692361095 -144840,295.14796258922706 -144870,295.14795635053724 -144900,295.14795041300994 -144930,295.1479446570965 -144960,295.14793897245204 -144990,295.1479332758009 -145020,295.14792752232904 -145050,295.1479217094156 -145080,295.1479158729087 -145110,295.14791007736585 -145140,295.1479044025319 -145170,295.1478989287144 -145200,295.14789372361827 -145230,295.1478888326804 -145260,295.1478842741448 -145290,295.1478800391916 -145320,295.14787609655804 -145350,295.14787240039703 -145380,295.14786889971634 -145410,295.14786554765243 -145440,295.1478623090498 -145470,295.14785916526205 -145500,295.1478561156725 -145530,295.1478531760327 -145560,295.14785037423803 -145590,295.1478477445211 -145620,295.1478453212024 -145650,295.1478431330894 -145680,295.1478411993894 -145710,295.14783952765606 -145740,295.1478381138944 -145770,295.1478369445751 -145800,295.1478360000165 -145830,295.1478352592856 -145860,295.1478347061727 -145890,295.1478343336325 -145920,295.14783414447913 -145950,295.14783414868845 -145980,295.1478343592991 -146010,295.1478347886783 -146040,295.14783544586953 -146070,295.1478363350293 -146100,295.14783745482674 -146130,295.1478387987456 -146160,295.1478403562071 -146190,295.1478421142908 -146220,295.1478440597082 -146250,295.1478461806508 -146280,295.1478484682096 -146310,295.1478509172093 -146340,295.14785352633385 -146370,295.1478562975066 -146400,295.1478592347276 -146430,295.14786234270974 -146460,295.14786562563444 -146490,295.147869086217 -146520,295.1478727251586 -146550,295.1478765409913 -146580,295.14788053028025 -146610,295.14788468811145 -146640,295.14788900875624 -146670,295.1478934863886 -146700,295.1478981157354 -146730,295.14790292209744 -146760,295.1479079752217 -146790,295.1479133539471 -146820,295.1479190957829 -146850,295.14792517390373 -146880,295.14793151000646 -146910,295.1479380037424 -146940,295.1479445589888 -146970,295.1479511001573 -147000,295.1479575806013 -147030,295.14796405737474 -147060,295.14797072076686 -147090,295.1479778046109 -147120,295.1479854565805 -147150,295.1479936727825 -147180,295.14800231895384 -147210,295.14801119366325 -147240,295.14802008716646 -147270,295.14802881986697 -147300,295.1480372650049 -147330,295.1480453617416 -147360,295.14805311914483 -147390,295.1480606092935 -147420,295.1480679499945 -147450,295.1480752808333 -147480,295.1480827377915 -147510,295.14809043124427 -147540,295.1480984307183 -147570,295.148106758132 -147600,295.148115389655 -147630,295.1481243507022 -147660,295.14813378320054 -147690,295.1481438453578 -147720,295.14815459118495 -147750,295.1481659285577 -147780,295.1481776504786 -147810,295.14818949521475 -147840,295.14820120356006 -147870,295.1482125623548 -147900,295.1482234331711 -147930,295.14823376621 -147960,295.14824359914945 -147990,295.1482530420371 -148020,295.14826225166746 -148050,295.1482714007148 -148080,295.1482806474326 -148110,295.1482901110156 -148140,295.1482998561585 -148170,295.1483098883812 -148200,295.14832015971456 -148230,295.14833058266515 -148260,295.1483410492316 -148290,295.1483514512568 -148320,295.1483616985798 -148350,295.1483717322012 -148380,295.1483815308084 -148410,295.1483911102943 -148440,295.1484005171125 -148470,295.14840981724586 -148500,295.1484190831071 -148530,295.1484283807803 -148560,295.148437759698 -148590,295.14844724619536 -148620,295.14845684161986 -148650,295.1484665248045 -148680,295.1484762580165 -148710,295.148485995012 -148740,295.14849568962774 -148770,295.1485053034198 -148800,295.1485148111797 -148830,295.14852420363866 -148860,295.1485334872162 -148890,295.14854268117625 -148920,295.1485518129485 -148950,295.14856091259327 -148980,295.1485700074284 -149010,295.14857911769457 -149040,295.14858825387057 -149070,295.14859741590567 -149100,295.14860659428894 -149130,295.14861577257784 -149160,295.14862493080494 -149190,295.14863404910034 -149220,295.148643110902 -149250,295.14865210526443 -149280,295.148661027978 -149310,295.14866988144394 -149340,295.14867867345976 -149370,295.14868741523753 -149400,295.14869611906846 -149430,295.1487047959118 -149460,295.1487134532011 -149490,295.1487220934342 -149520,295.14873071398563 -149550,295.1487393080738 -149580,295.1487478664285 -149610,295.1487563791485 -149640,295.1487648373828 -149670,295.14877323461326 -149700,295.1487815674111 -149730,295.14878983561044 -149760,295.1487980419243 -149790,295.14880619111926 -149820,295.14881428893204 -149850,295.1488223409397 -149880,295.1488303515787 -149910,295.1488383234609 -149940,295.1488462570692 -149970,295.1488541508393 -150000,295.1488620015752 -150030,295.14886980508953 -150060,295.1488775569405 -150090,295.1488852531302 -150120,295.14889289065326 -150150,295.1489004678207 -150180,295.14890798432907 -150210,295.1489154410917 -150240,295.1489228398862 -150270,295.148930182897 -150300,295.14893747224005 -150330,295.1489447095526 -150360,295.14895189570706 -150390,295.14895903068464 -150420,295.1489661136123 -150450,295.1489731429382 -150480,295.1489801167023 -150510,295.14898703284564 -150540,295.14899388950323 -150570,295.14900068523315 -150600,295.1490074191513 -150630,295.1490140909583 -150660,295.14902070086794 -150690,295.1490272494573 -150720,295.1490337374745 -150750,295.1490401656395 -150780,295.1490465344713 -150810,295.1490528441692 -150840,295.14905909456047 -150870,295.1490652851168 -150900,295.1490714150281 -150930,295.1490774833171 -150960,295.1490834889686 -150990,295.1490894310525 -151020,295.14909530881965 -151050,295.1491011217572 -151080,295.1491068695998 -151110,295.1491125522987 -151140,295.14911816995857 -151170,295.1491237227568 -151200,295.1491292108593 -151230,295.11994216599044 -151260,295.1014922949259 -151290,295.09562522137605 -151320,295.1018975596984 -151350,295.1178828200623 -151380,295.13981676957087 -151410,295.1633608996752 -151440,295.184388225238 -151470,295.19964477143265 -151500,295.2071811736671 -151530,295.2065337169314 -151560,295.1986419245004 -151590,295.18552423057406 -151620,295.1698416284098 -151650,295.15437997728475 -151680,295.14158833464006 -151710,295.1332233651034 -151740,295.1301058798846 -151770,295.1321093650956 -151800,295.13828333017545 -151830,295.14709963474786 -151860,295.15676540761905 -151890,295.1655479169589 -151920,295.17205207576905 -151950,295.1754125146194 -151980,295.17537694128777 -152010,295.1722803445785 -152040,295.1669258559117 -152070,295.1603990967795 -152100,295.15385995012264 -152130,295.1483465796136 -152160,295.1446152632134 -152190,295.14304460641404 -152220,295.143618029941 -152250,295.14596948547626 -152280,295.1494865015098 -152310,295.15343001135767 -152340,295.15707440875843 -152370,295.1598228901756 -152400,295.16129704717684 -152430,295.16137109416127 -152460,295.1601498013681 -152490,295.1579560634032 -152520,295.15523412058434 -152550,295.1524652048574 -152580,295.1500870675192 -152610,295.14842570291665 -152640,295.147651762788 -152670,295.14777275540945 -152700,295.148648864025 -152730,295.1500387570837 -152760,295.1516386511305 -152790,295.1531424691355 -152820,295.15429403839954 -152850,295.15492898445854 -152880,295.1549825912011 -152910,295.1544963262056 -152940,295.1535901694901 -152970,295.1524491776544 -153000,295.15127201535927 -153030,295.1502417142701 -153060,295.1494975368402 -153090,295.1491181231872 -153120,295.14911439378375 -153150,295.14943346390817 -153180,295.14997736743226 -153210,295.1506219054228 -153240,295.1512386210212 -153270,295.1517186696454 -153300,295.1519886962199 -153330,295.1520192770266 -153360,295.1518231198693 -153390,295.1514456818601 -153420,295.1509620831289 -153450,295.15045476823923 -153480,295.1500036832082 -153510,295.14967088550645 -153540,295.1494913724805 -153570,295.14947070681023 -153600,295.14958775413965 -153630,295.1498012164569 -153660,295.1500586423294 -153690,295.1503063098343 -153720,295.1504982780614 -153750,295.1506031672342 -153780,295.1506077663801 -153810,295.1505172122332 -153840,295.1503520913856 -153870,295.1501432921477 -153900,295.14992571410875 -153930,295.1497320092986 -153960,295.14958739266785 -153990,295.149506266346 -154020,295.1494910180058 -154050,295.1495329508186 -154080,295.1496148334987 -154110,295.14971465469546 -154140,295.1498101635749 -154170,295.149882713915 -154200,295.14991987211306 -154230,295.149916557558 -154260,295.1498749180747 -154290,295.1498031628975 -154320,295.14971360277406 -154350,295.14962020892887 -154380,295.1495361141051 -154410,295.1494715074741 -154440,295.14943227090964 -154470,295.14941950881087 -154500,295.14942992786905 -154530,295.14945688583066 -154560,295.14949185628655 -154590,295.1495260312118 -154620,295.1495518070381 -154650,295.1495638853633 -154680,295.1495598600103 -154710,295.14954027388865 -154740,295.14950820201904 -154770,295.1494684699678 -154800,295.1494266644535 -154830,295.1493881515785 -154860,295.1493572715161 -154890,295.1493367742043 -154920,295.1493275424424 -154950,295.1493286323798 -154980,295.1493376149621 -155010,295.1493511386602 -155040,295.1493655875012 -155070,295.1493777030352 -155100,295.14938506958634 -155130,295.14938640512975 -155160,295.1493816377163 -155190,295.14937177835964 -155220,295.1493586302498 -155250,295.1493443987449 -155280,295.14933127881847 -155310,295.14932109206404 -155340,295.1493150273312 -155370,295.1493135147758 -155400,295.1493162382497 -155430,295.1493222685931 -155460,295.1493302827622 -155490,295.1493388232124 -155520,295.1493465501719 -155550,295.1493524460193 -155580,295.14935594367864 -155610,295.1493569666784 -155640,295.149355884345 -155670,295.1493533990398 -155700,295.1493503915851 -155730,295.1493477549745 -155760,295.1493462450009 -155790,295.1493463704054 -155820,295.1493483360713 -155850,295.1493520425996 -155880,295.1493571358957 -155910,295.1493630929653 -155940,295.14936932575495 -155970,295.1493752839582 -156000,295.1493805400224 -156030,295.1493848444147 -156060,295.1493881454466 -156090,295.14939057442297 -156120,295.1493924024818 -156150,295.1493939794113 -156180,295.1493956665221 -156210,295.1493977752605 -156240,295.1494005209838 -156270,295.1494039977598 -156300,295.1494081759429 -156330,295.14941292033694 -156360,295.1494180236317 -156390,295.1494232478912 -156420,295.14942836637465 -156450,295.1494331987876 -156480,295.1494376349243 -156510,295.14944164413726 -156540,295.14944527068644 -156570,295.1494486173325 -156600,295.1494518211977 -156630,295.14945502673163 -156660,295.14945836054505 -156690,295.1494619120283 -156720,295.1494657222772 -156750,295.1494697822002 -156780,295.1494740390763 -156810,295.1494784095275 -156840,295.14948279604954 -156870,295.1494871039856 -156900,295.1494912561064 -156930,295.14949520267726 -156960,295.1494989258715 -156990,295.14950243844817 -157020,295.1495057775618 -157050,295.1495089952721 -157080,295.1495121476856 -157110,295.14951528466554 -157140,295.1495184417345 -157170,295.149521635249 -157200,295.1495248612673 -157230,295.1495280978766 -157260,295.1495313102062 -157290,295.1495344569988 -157320,295.1495374974864 -157350,295.14954039740854 -157380,295.14954313328263 -157410,295.14954569442585 -157440,295.1495480826529 -157470,295.1495503099627 -157500,295.1495523948242 -157530,295.14955435782906 -157560,295.1495562174986 -157590,295.1495579869149 -157620,295.1495596716369 -157650,295.149561269099 -157680,295.14956276942206 -157710,295.1495641573452 -157740,295.14956541483565 -157770,295.1495665238716 -157800,295.14956746892454 -157830,295.1495682387677 -157860,295.1495688273927 -157890,295.14956923398626 -157920,295.14956946207843 -157950,295.1495695180987 -157980,295.1495694096439 -158010,295.1495691437775 -158040,295.14956872563624 -158070,295.14956815753936 -158100,295.1495674386911 -158130,295.1495665654587 -158160,295.14956553211687 -158190,295.1495643318842 -158220,295.14956295805086 -158250,295.14956140500175 -158280,295.14955966898253 -158310,295.14955774851154 -158340,295.14955564441254 -158370,295.1495533595072 -158400,295.1495508980567 -158430,295.14954831547976 -158460,295.14954578037907 -158490,295.1495435453885 -158520,295.14954185339866 -158550,295.1495408602378 -158580,295.1495406119051 -158610,295.1495410607699 -158640,295.14954209146174 -158670,295.14954354328364 -158700,295.1495452323663 -158730,295.1495469785625 -158760,295.1495486341019 -158790,295.1495501052809 -158820,295.1495513607281 -158850,295.14955242639286 -158880,295.1495533718333 -158910,295.1495542923926 -158940,295.1495552900772 -158970,295.1495564552522 -159000,295.1495578517405 -159030,295.1495595078923 -159060,295.1495614148764 -159090,295.1495635316014 -159120,295.1495657943947 -159150,295.1495681291671 -159180,295.14957046388446 -159210,295.14957273939257 -159240,295.14957491701654 -159270,295.14957698198 -159300,295.14957894251137 -159330,295.1495808252876 -159360,295.1495826684098 -159390,295.14958451335 -159420,295.1495863972903 -159450,295.14958834705084 -159480,295.1495903754228 -159510,295.149592480239 -159540,295.1495946460248 -159570,295.14959684766114 -159600,295.1495990552246 -159630,295.14960123907656 -159660,295.1496033743366 -159690,295.14960544407865 -159720,295.14960744086784 -159750,295.1496093665742 -159780,295.1496112306887 -159810,295.1496130475874 -159840,295.14961483331274 -159870,295.14961660245353 -159900,295.1496183656239 -159930,295.14962012788567 -159960,295.14962188826587 -159990,295.1496236403229 -160020,295.1496253735487 -160050,295.1496270752825 -160080,295.1496287327622 -160110,295.14963033496235 -160140,295.14963187394045 -160170,295.14963334552704 -160200,295.14963474932074 -160230,295.1496360880682 -160260,295.14963736660025 -160290,295.1496385905497 -160320,295.1496397650857 -160350,295.1496408938696 -160380,295.1496419783799 -160410,295.1496430176734 -160440,295.14964400857247 -160470,295.14964494620017 -160500,295.149645824734 -160530,295.1496466382315 -160560,295.14964738138303 -160590,295.1496480500771 -160620,295.1496486417063 -160650,295.1496491551942 -160680,295.1496495907696 -160710,295.1496499495548 -160740,295.1496502330556 -160770,295.14965044264943 -160800,295.1496505791546 -160830,295.14965064254216 -160860,295.14965063182274 -160890,295.1496505451049 -160920,295.14965037979846 -160950,295.1496501329106 -160980,295.14964980137745 -161010,295.1496493823718 -161040,295.14964887353966 -161070,295.149648273135 -161100,295.14964758004214 -161130,295.1496467936947 -161160,295.14964591391725 -161190,295.14964494072336 -161220,295.1496438741087 -161250,295.149642713874 -161280,295.1496414595032 -161310,295.14964011011057 -161340,295.1496386644583 -161370,295.14963712103247 -161400,295.14963547815984 -161430,295.1496337341404 -161460,295.1496318873737 -161490,295.1496299364569 -161520,295.1496278802443 -161550,295.1496257178608 -161580,295.14962344867405 -161610,295.1496210722337 -161640,295.14961858819163 -161670,295.14961599621915 -161700,295.1496132959344 -161730,295.1496104868512 -161760,295.14960756835546 -161790,295.1496045397094 -161820,295.1496014000806 -161850,295.1495981485878 -161880,295.1495947843546 -161910,295.1495913065604 -161940,295.1495877144824 -161970,295.1495840075212 -162000,295.1495801852088 -162030,295.14957636905 -162060,295.14957292177564 -162090,295.14957030054603 -162120,295.1495687955036 -162150,295.1495684102198 -162180,295.14956892425795 -162210,295.149570010232 -162240,295.14957130849945 -162270,295.149572464561 -162300,295.149573169239 -162330,295.1495732087438 -162360,295.1495725005216 -162390,295.14957109575926 -162420,295.14956915187406 -162450,295.14956689063456 -162480,295.1495645545806 -162510,295.1495623672772 -162540,295.14956050029366 -162570,295.1495590507462 -162600,295.14955803314507 -162630,295.14955738640083 -162660,295.1495569930726 -162690,295.14955670565104 -162720,295.1495563744062 -162750,295.1495558722189 -162780,295.1495551129572 -162810,295.14955406119617 -162840,295.1495527325493 -162870,295.1495511855168 -162900,295.14954950716015 -162930,295.14954779572656 -162960,295.149546143453 -162990,295.1495446223316 -163020,295.14954327480126 -163050,295.149542110326 -163080,295.1495411077627 -163110,295.1495402224802 -163140,295.1495393965192 -163170,295.1495385697715 -163200,295.1495376902273 -163230,295.14953672171754 -163260,295.1495356481713 -163290,295.14953447408766 -163320,295.1495332215753 -163350,295.149531924836 -163380,295.1495306232895 -163410,295.1495293546218 -163440,295.14952814890853 -163470,295.14952702465155 -163500,295.1495259871625 -163530,295.14952502928986 -163560,295.1495241341027 -163590,295.14952327886925 -163620,295.1495224395283 -163650,295.1495215948655 -163680,295.14952072974256 -163710,295.14951983695806 -163740,295.1495189175916 -163770,295.1495179799471 -163800,295.14951703742963 -163830,295.14951610582483 -163860,295.1495152004963 -163890,295.1495143339694 -163920,295.149513514254 -163950,295.14951274409714 -163980,295.1495120211815 -164010,295.1495113391304 -164040,295.14951068906106 -164070,295.14951006136994 -164100,295.14950944743083 -164130,295.14950884093645 -164160,295.14950823870566 -164190,295.14950764088337 -164220,295.14950705057123 -164250,295.149506473014 -164280,295.1495059145255 -164310,295.1495053813611 -164340,295.1495048787271 -164370,295.14950441007363 -164400,295.1495039767557 -164430,295.14950357807487 -164460,295.1495032116524 -164490,295.14950287403394 -164520,295.1495025614004 -164550,295.149502270257 -164580,295.1495019979892 -164610,295.14950174321007 -164640,295.1495015058654 -164670,295.14950128710814 -164700,295.149501088988 -164730,295.14950091402875 -164760,295.1495007647753 -164790,295.1495006433888 -164820,295.1495005513495 -164850,295.14950048930564 -164880,295.1495004570745 -164910,295.1495004537796 -164940,295.1495004780852 -164970,295.1495005284792 -165000,295.14950060355136 -165030,295.1495007022238 -165060,295.14950082389885 -165090,295.14950096851175 -165120,295.14950113648933 -165150,295.1495013286322 -165180,295.14950154594885 -165210,295.1495017894743 -165240,295.14950206010474 -165270,295.1495023584735 -165300,295.149502684884 -165330,295.1495030393041 -165360,295.1495034214159 -165390,295.1495038307066 -165420,295.1495042665801 -165450,295.14950472847033 -165480,295.14950521593494 -165510,295.14950572871936 -165540,295.14950626678143 -165570,295.1495068302786 -165600,295.1495074195236 -165630,295.1495080174063 -165660,295.14950857141804 -165690,295.1495090130493 -165720,295.1495092946694 -165750,295.14950940812577 -165780,295.1495093781472 -165810,295.14950924712736 -165840,295.1495090647288 -165870,295.1495088822812 -165900,295.1495087468021 -165930,295.1495086935099 -165960,295.1495087399861 -165990,295.1495088847913 -166020,295.1495091104292 -166050,295.14950938870936 -166080,295.1495096867343 -166110,295.1495099726216 -166140,295.1495102204808 -166170,295.1495104140661 -166200,295.14951054851457 -166230,295.14951062993595 -166260,295.1495106731525 -166290,295.14951069825497 -166320,295.14951072673216 -166350,295.1495107778451 -166380,295.1495108657702 -166410,295.14951099787766 -166440,295.14951117431275 -166470,295.14951138881634 -166500,295.14951163051074 -166530,295.1495118862378 -166560,295.1495121429972 -166590,295.14951239007587 -166620,295.1495126205598 -166650,295.1495128320513 -166680,295.1495130265639 -166710,295.1495132097047 -166740,295.1495133893595 -166770,295.1495135741543 -166800,295.14951377197207 -166830,295.1495139887609 -166860,295.1495142277956 -166890,295.1495144894615 -166920,295.14951477153727 -166950,295.14951506987205 -166980,295.14951537930244 -167010,295.1495156946298 -167040,295.1495160114925 -167070,295.1495163269996 -167100,295.14951664005264 -167130,295.14951695133544 -167160,295.14951726301354 -167190,295.1495175782249 -167220,295.1495179004694 -167250,295.14951823300936 -167280,295.1495185783769 -167310,295.1495189380583 -167340,295.14951931238545 -167370,295.1495197006295 -167400,295.14952010125734 -167430,295.14952051229096 -167460,295.1495209316989 -167490,295.149521357751 -167520,295.149521789284 -167550,295.14952222584327 -167580,295.1495226676925 -167610,295.1495231157042 -167640,295.1495235711632 -167670,295.14952403552496 -167700,295.1495245101736 -167730,295.1495249962194 -167760,295.1495254943642 -167790,295.14952600484924 -167820,295.1495265274849 -167850,295.14952706174705 -167880,295.1495276069175 -167910,295.1495281622403 -167940,295.14952872706624 -167970,295.14952930096297 -168000,295.1495298837776 -168030,295.1495304756454 -168060,295.1495310769511 -168090,295.14953168825303 -168120,295.1495323101877 -168150,295.1495329433725 -168180,295.1495335883224 -168210,295.1495342453933 -168240,295.14953491475734 -168270,295.14953559641174 -168300,295.14953629021466 -168330,295.14953699594014 -168360,295.1495377133403 -168390,295.1495384422037 -168420,295.14953918240167 -168450,295.1495399339146 -168480,295.1495406968383 -168510,295.1495414713702 -168540,295.14954225778007 -168570,295.14954305637286 -168600,295.14954386744927 -168630,295.1495446912718 -168660,295.14954552804073 -168690,295.14954637788327 -168720,295.1495472408552 -168750,295.1495481169546 -168780,295.14954900614305 -168810,295.1495499083702 -168840,295.14955082359785 -168870,295.1495517518185 -168900,295.14955269306705 -168930,295.1495536474244 -168960,295.1495546150122 -168990,295.1495555959823 -169020,295.14955659050145 -169050,295.149557598736 -169080,295.1495586208381 -169110,295.1495596569353 -169140,295.1495607071257 -169170,295.1495617714784 -169200,295.14956285003814 -169230,295.1495642046268 -169260,295.1495666163618 -169290,295.1495710809924 -169320,295.14957825449744 -169350,295.1495881853334 -169380,295.1496004276152 -169410,295.14961428015647 -169440,295.1496289491426 -169470,295.1496436359374 -169500,295.14965762762654 -169530,295.14967040686287 -169560,295.149681734108 -169590,295.1496916614564 -169620,295.149700481094 -169650,295.14970863884275 -169680,295.1497166402912 -169710,295.1497249632478 -169740,295.1497339837309 -169770,295.1497439237485 -169800,295.14975482908824 -169830,295.1497665798348 -169860,295.1497789283806 -169890,295.1497915542648 -169920,295.14980412403025 -169950,295.1498163459178 -169980,295.1498280116392 -170010,295.1498390200895 -170040,295.14984938094824 -170070,295.1498591996192 -170100,295.14986864809254 -170130,295.1498779282604 -170160,295.14988723464666 -170190,295.1498967226959 -170220,295.14990648710994 -170250,295.14991655261133 -170280,295.1499268772484 -170310,295.14993736628435 -170340,295.149947893177 -170370,295.14995832337974 -170400,295.1499685367286 -170430,295.1499784449092 -170460,295.14998800171225 -170490,295.1499972052202 -170520,295.15000609249097 -170550,295.150014728465 -170580,295.15002319157816 -170610,295.1500315588175 -170640,295.1500398927337 -170670,295.1500482323144 -170700,295.1500565887705 -170730,295.15006494636305 -170760,295.15007326755546 -170790,295.1500815011527 -170820,295.1500895917483 -170850,295.1500974887804 -170880,295.1501051537577 -170910,295.1501125646798 -170940,295.15011971724886 -170970,295.15012662304275 -171000,295.1501333052968 -171030,295.1501397932604 -171060,295.15014611621723 -171090,295.1501522981875 -171120,295.1501583541029 -171150,295.1501642879129 -171180,295.1501700927098 -171210,295.1501757526226 -171240,295.1501812459644 -171270,295.1501865489749 -171300,295.1501916394755 -171330,295.1501964998486 -171360,295.1502011189292 -171390,295.1502054926244 -171420,295.15020962330493 -171450,295.1502135182093 -171480,295.15021718723546 -171510,295.1502206405526 -171540,295.150223886445 -171570,295.15022692971473 -171600,295.1502297708413 -171630,295.1502324059495 -171660,295.1502348274967 -171690,295.1502370254865 -171720,295.1502389889472 -171750,295.1502407074045 -171780,295.1502421721058 -171810,295.1502433768252 -171840,295.1502443181652 -171870,295.15024499536656 -171900,295.1502454097264 -171930,295.1502455638016 -171960,295.15024546062443 -171990,295.15024510315584 -172020,295.1502444941357 -172050,295.15024363635786 -172080,295.1502425332596 -172110,295.15024118963544 -172140,295.15023961227814 -172170,295.1502378103903 -172200,295.1502357956443 -172230,295.1502335817915 -172260,295.1502311837773 -172290,295.1502286164252 -172320,295.1502258928901 -172350,295.1502230231632 -172380,295.15022001289407 -172410,295.1502168627002 -172440,295.1502135680253 -172470,295.1502101195279 -172500,295.1502065039271 -172530,295.15020270518147 -172560,295.15019870582074 -172590,295.1501944882261 -172620,295.15019003568125 -172650,295.150185333082 -172680,295.1501803672681 -172710,295.1501751269988 -172740,295.1501696026354 -172770,295.15016378563007 -172800,295.15015766793823 diff --git a/testing/test_testcase1.py b/testing/test_testcase1.py index 0b0f5a4bd..7919e0e75 100644 --- a/testing/test_testcase1.py +++ b/testing/test_testcase1.py @@ -113,38 +113,6 @@ def test_run(self): # Test self.compare_ref_timeseries_df(df,ref_filepath) -class ExampleProportionalJavaScript(unittest.TestCase, utilities.partialChecks): - '''Tests the example test of proportional feedback controller in JavaScript. - - ''' - - def setUp(self): - '''Setup for each test. - - ''' - - pass - - def test_run(self): - '''Runs the example and tests the kpi and trajectory results. - - ''' - - # Run test - kpi_path = os.path.join(utilities.get_root_path(), 'examples', 'javascript', 'kpi_testcase1.csv') - res_path = os.path.join(utilities.get_root_path(), 'examples', 'javascript', 'result_testcase1.csv') - # Check kpis - df = pd.read_csv(kpi_path, index_col = 'keys') - ref_filepath = os.path.join(utilities.get_root_path(), 'testing', 'references', 'testcase1', 'kpis_javascript.csv') - self.compare_ref_values_df(df, ref_filepath) - # Check trajectories - df = pd.read_csv(res_path, index_col = 'time') - # Set reference file path - ref_filepath = os.path.join(utilities.get_root_path(), 'testing', 'references', 'testcase1', 'results_javascript.csv') - # Test - self.compare_ref_timeseries_df(df,ref_filepath) - - class MinMax(unittest.TestCase): '''Test the use of min/max attributes to truncate the controller input. diff --git a/testing/test_testcase2.py b/testing/test_testcase2.py index 3671a56e7..7ef83d225 100644 --- a/testing/test_testcase2.py +++ b/testing/test_testcase2.py @@ -84,38 +84,6 @@ def test_run(self): # Test self.compare_ref_timeseries_df(df,ref_filepath) -class ExampleSupervisoryJavaScript(unittest.TestCase, utilities.partialChecks): - '''Tests the example test of a supervisory controller in JavaScript. - - ''' - - def setUp(self): - '''Setup for each test. - - ''' - - pass - - def test_run(self): - '''Runs the example and tests the kpi and trajectory results. - - ''' - - # Run test - kpi_path = os.path.join(utilities.get_root_path(), 'examples', 'javascript', 'kpi_testcase2.csv') - res_path = os.path.join(utilities.get_root_path(), 'examples', 'javascript', 'result_testcase2.csv') - # Check kpis - df = pd.read_csv(kpi_path, index_col = 'keys') - ref_filepath = os.path.join(utilities.get_root_path(), 'testing', 'references', 'testcase2', 'kpis_javascript.csv') - self.compare_ref_values_df(df, ref_filepath) - # Check trajectories - df = pd.read_csv(res_path, index_col = 'time') - # Set reference file path - ref_filepath = os.path.join(utilities.get_root_path(), 'testing', 'references', 'testcase2', 'results_javascript.csv') - # Test - self.compare_ref_timeseries_df(df,ref_filepath) - - class MinMax(unittest.TestCase): '''Test the use of min/max attributes to truncate the controller input.