From 870fc53fc83077138b88bdc4ebc2a9bc3a57ff31 Mon Sep 17 00:00:00 2001
From: Lars Berning <151194+laberning@users.noreply.github.com>
Date: Thu, 1 Apr 2021 22:05:05 +0200
Subject: [PATCH] updates documentation
---
README.md | 18 +-
app/client/index.html | 6 +-
doc/installation.md | 64 +-
install/install.sh | 24 +-
package-lock.json | 12 +-
recordings/wrx700_2magnets_session.csv | 11887 +++++++++++++++++++++++
6 files changed, 11936 insertions(+), 75 deletions(-)
create mode 100644 recordings/wrx700_2magnets_session.csv
diff --git a/README.md b/README.md
index 86eccf4..52cc89e 100644
--- a/README.md
+++ b/README.md
@@ -38,11 +38,21 @@ Open Rowing Monitor also implements different Bluetooth Low Energy (BLE) protoco
Fitness Machine Service (FTMS) is a standardized GATT protocol for different types of fitness machines. Open Rowing Monitor currently supports the type **FTMS Rower** and simulates the type **FTMS Indoor Bike**.
-**FTMS Rower** allows all rower specific metrics (such as stroke rate) to be present, unfortunately not many training applications exist that support this type (the only one I'm aware of is Kinomap but let me know if there are more).
+**FTMS Rower:** This is the FTMS profile for rowing machines and supports all rowing specific metrics (such as stroke rate). So far not many training applications for this profile exist, but the market is evolving. I've successfully tested it with [EXR](https://www.exrgame.com), [MyHomeFit](https://myhomefit.de) and [Kinomap](https://www.kinomap.com).
-**FTMS Indoor Bike** is widely adopted by training applications for bike training. The simulated Indoor Bike offers metrics such as power and distance to the biking application. So why not use your rowing machine to row up a mountain in Zwift, Bkool, Sufferfest or similar :-)
+**FTMS Indoor Bike:** This FTMS profile is used by Smart Bike Trainers and widely adopted by training applications for bike training. It does not support rowing specific metrics. But we can present metrics such as power and distance to the biking application. So why not use your virtual rowing bike to row up a mountain in [Zwift](https://www.zwift.com), [Bkool](https://www.bkool.com), [The Sufferfest](https://thesufferfest.com) or similar :-)
-**Concept2 PM** Open Rowing Monitor also implements part of the Concept2 PM Bluetooth Smart Communication Interface Definition. This is still work in progress and only implements the most common parts of the spec, so it will not work with all applications that support the C2 rowing machines.
+**Concept2 PM:** Open Rowing Monitor also implements part of the Concept2 PM Bluetooth Smart Communication Interface Definition. This is still work in progress and only implements the most common parts of the spec, so it will not work with all applications that support C2 rowing machines. It currently works with all the samples from [The Erg Arcade](https://ergarcade.com), i.e. you can [row in the clouds](https://ergarcade.github.io/mrdoob-clouds/). This also works very well with [EXR](https://www.exrgame.com).
+
+## Installation
+
+You will need a Raspberry Pi 3 or 4 with a fresh installation of Raspberry Pi OS Lite for this. Connect to the device with SSH and initiate the following command to set up all required dependencies and to install Open Rowing Monitor as an automatically starting system service:
+
+```zsh
+/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/laberning/openrowingmonitor/HEAD/install/install.sh)"
+```
+
+Also have a look at the [Detailed Installation Instructions](doc/installation.md) for more information on the software installation and for instructions on how to connect the rowing machine.
## How it all started
@@ -56,8 +66,6 @@ This project is already in a very usable stage, but some things are still a bit
Feel free to leave a message in the [GitHub Discussions](https://github.com/laberning/openrowingmonitor/discussions) if you have any questions or ideas related to this project.
-Here are some basic [Installation Instructions](doc/installation.md).
-
I plan to add more features, here is the [Development Roadmap](doc/backlog.md).
This project uses some great work by others, see the [Attribution here](doc/attribution.md).
diff --git a/app/client/index.html b/app/client/index.html
index ffe6810..d345cdc 100644
--- a/app/client/index.html
+++ b/app/client/index.html
@@ -46,9 +46,9 @@
diff --git a/doc/installation.md b/doc/installation.md
index 374c7f4..0bcfe72 100644
--- a/doc/installation.md
+++ b/doc/installation.md
@@ -1,6 +1,6 @@
# Set up of Open Rowing Monitor
-This guide roughly explains how to set up your device. I will probably build an automated installation script from this later.
+This guide roughly explains how to set up the rowing software and hardware.
## Requirements
@@ -13,73 +13,29 @@ This guide roughly explains how to set up your device. I will probably build an
## Software Installation
-### Set up the Raspberry Pi
+### Initialization of the Raspberry Pi
* Install **Raspberry Pi OS Lite** on the SD Card i.e. with the [Raspberry Pi Imager](https://www.raspberrypi.org/software)
* Connect the device to your network ([headless](https://www.raspberrypi.org/documentation/configuration/wireless/headless.md) or via [command line](https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md))
* Enable [SSH](https://www.raspberrypi.org/documentation/remote-access/ssh/README.md)
-### Open a SSH-Connection and set up the dependencies
+### Installation of the Open Rowing Monitor
+
+Connect to the device with SSH and initiate the following command to set up all required dependencies and to install Open Rowing Monitor as an automatically starting system service:
```zsh
-sudo apt-get update
-sudo apt-get dist-upgrade
-sudo systemctl disable bluetooth
-sudo apt-get install bluetooth bluez libbluetooth-dev libudev-dev
+/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/laberning/openrowingmonitor/HEAD/install/install.sh)"
```
-### Install Node.js
-
-```zsh
-curl -fsSL https://deb.nodesource.com/setup_14.x | bash -
-apt-get install -y nodejs
-```
-
-### If you want to run Bluetooth Low Energy and the webserver on port 80 without root
+### If you want to run Bluetooth Low Energy and the Web-Server on port 80 without root
```zsh
sudo setcap cap_net_bind_service,cap_net_raw=+eip $(eval readlink -f `which node`)
```
-### Download Open Rowing Monitor and install dependencies
-
-```zsh
-curl -LJO https://github.com/laberning/openrowingmonitor/archive/main.zip
-unzip main.zip -d ~/openrowingmonitor
-rm main.zip
-cd ~/openrowingmonitor
-npm install
-```
-
-### Configuration and Startup
-
-You should now be able to start the Rowing Monitor: `npm start`
-
-You should now adjust the rower specific parameters in `app/engine/RowingEngine.js` to suit your rowing machine.
-
-### Automatically start Open Rowing Monitor while booting
-
-Create file `/lib/systemd/system/openrowingmonitor.service` with the following content:
-
-```Properties
-[Unit]
-Description=Open Rowing Monitor
-After=multi-user.target
-
-[Service]
-Type=simple
-User=pi
-# Restart=on-failure
-WorkingDirectory=/home/pi/openrowingmonitor
-ExecStart=/bin/bash -c 'PATH=/home/pi/.nvm/versions/node/v14.15.5/bin:$PATH exec npm start'
-
-[Install]
-WantedBy=multi-user.target
-```
-
## Hardware Installation
-Basically all that's left to do is hook up your sensor to the GPIO pins of the Raspberry Pi.
+Basically all that's left to do is hook up your sensor to the GPIO pins of the Raspberry Pi and configure the rowing machine specific parameters of the software.
Open Rowing Monitor reads the sensor signal from GPIO port 17 and expects it to pull on GND if the sensor is closed. To get a stable reading you should add a pull-up resistor to that pin. I prefer to use the internal resistor of the Raspberry Pi to keep the wiring simple but of course you can also go with an external circuit.
@@ -98,8 +54,10 @@ How to connect this to your rowing machine is specific to your device. You need

*Connecting the reed sensor*
-If your machine does not have something like this or if the sensor is not acessible, you can still build something similar quite easily. Some ideas on what to use:
+If your machine does not have something like this or if the sensor is not accessible, you can still build something similar quite easily. Some ideas on what to use:
* Reed sensor (i.e. of an old bike tachometer)
* PAS sensor (i.e. from an E-bike)
* Optical chopper wheel
+
+You should now adjust the rower specific parameters in `app/engine/RowingEngine.js` to suit your rowing machine.
diff --git a/install/install.sh b/install/install.sh
index 8914d05..3333bbd 100755
--- a/install/install.sh
+++ b/install/install.sh
@@ -20,23 +20,26 @@ cancel() {
}
print "Installation script for Open Rowing Monitor"
+print
+print "This script will set up Open Rowing Monitor on a Raspberry Pi 3 / 4 with Raspberry Pi OS (Lite)."
+print "You should only run this script on a SD Card that does not contain any important data."
+print
if [[ "$(uname -n)" != "raspberrypi" ]]; then
cancel "This script currently only works on Raspberry Pi OS, you will have to do a manual installation."
fi
-print "This script will set up Open Rowing Monitor on a Raspberry Pi 3 / 4 with Raspberry Pi OS (lite)."
-print "You should only run this script on a SD Card that does not contain any important other data."
-
VERSION=$(grep -oP '(?<=^VERSION=).+' /etc/os-release | tr -d '"')
if [[ $VERSION != "10 (buster)" ]]; then
print "Warning: So far this install script has only been tested with Raspberry Pi OS 10 (buster)."
print "You are running Raspberry Pi OS $VERSION, are you sure that you want to continue?"
fi
+print
read -p "Press RETURN to continue or CTRL + C to abort"
-print "installing dependencies..."
+print
+print "Installing System dependencies..."
sudo apt-get -y update
sudo apt-get -y dist-upgrade
sudo systemctl disable bluetooth
@@ -45,7 +48,8 @@ sudo apt-get -y install bluetooth bluez libbluetooth-dev libudev-dev git
curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs
-print "installing openrowingmonitor..."
+print
+print "Installing Open Rowing Monitor..."
INSTALL_DIR="/opt/openrowingmonitor"
GIT_REMOTE="https://github.com/laberning/openrowingmonitor.git"
@@ -68,14 +72,18 @@ sudo git reset --hard origin/main
# otherwise node-gyp would fail while building the system dependencies
sudo npm config set user 0
-print "downloading and compiling dependencies..."
+print
+print "Downloading and compiling Runtime dependencies..."
sudo npm install
sudo npm run build
+print
+print "Setting up Open Rowing Monitor as autostarting system service..."
sudo cp install/openrowingmonitor.service /lib/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable openrowingmonitor
sudo systemctl restart openrowingmonitor
-print "installation finished"
-print "Open Rowing Monitor should now be up and running... (open http:// to verify)"
+print
+print "Installation of Open Rowing Monitor finished"
+print "Open Rowing Monitor should now be up and running."
diff --git a/package-lock.json b/package-lock.json
index 69ca553..e72ab14 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -2974,9 +2974,9 @@
}
},
"snowpack": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/snowpack/-/snowpack-3.1.2.tgz",
- "integrity": "sha512-LsYlBNjB/t/p5QP434Pa1TqjyuX8VtXiYQaAWZkOn1d1TVKEt7nigMBr8Z+EDXYn6YlLXYKHXDvv/NhUS7Ri9A==",
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/snowpack/-/snowpack-3.2.2.tgz",
+ "integrity": "sha512-lt2FEFpvrWSBhFPlQxDr2hG7hnyucLEh7QSJqUUcAljrt8UoWJjTZlvZ4shGiJLkNjxMgGrJKj37y08/9OvXMw==",
"dev": true,
"requires": {
"cli-spinners": "^2.5.0",
@@ -3148,9 +3148,9 @@
},
"dependencies": {
"ajv": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.0.2.tgz",
- "integrity": "sha512-V0HGxJd0PiDF0ecHYIesTOqfd1gJguwQUOYfMfAWnRsWQEXfc5ifbUFhD3Wjc+O+y7VAqL+g07prq9gHQ/JOZQ==",
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.0.3.tgz",
+ "integrity": "sha512-Df6NAivu9KpZw+q8ySijAgLvr1mUA5ihkRvCLCxpdYR21ann5yIuN+PpFxmweSj7i3yjJ0x5LN5KVs0RRzskAQ==",
"dev": true,
"requires": {
"fast-deep-equal": "^3.1.1",
diff --git a/recordings/wrx700_2magnets_session.csv b/recordings/wrx700_2magnets_session.csv
new file mode 100644
index 0000000..56a7422
--- /dev/null
+++ b/recordings/wrx700_2magnets_session.csv
@@ -0,0 +1,11887 @@
+10.22244996
+8.738738422
+0.253391024
+0.198047645
+0.168067682
+0.146319829
+0.140517242
+0.140369482
+0.172018503
+0.212013854
+0.241842412
+0.272266854
+0.318376822
+0.358736859
+0.4287503
+0.531726767
+0.720000692
+1.171790767
+4.550252442
+0.298176831
+0.224527516
+0.185908099
+0.158037296
+0.141602031
+0.147107275
+0.198316083
+0.242451162
+0.265300834
+0.309619559
+0.35584312
+0.416696952
+0.302937287
+0.19523953
+0.159807812
+0.136696056
+0.121414227
+0.118604547
+0.126444472
+0.168631327
+0.194536876
+0.22104883
+0.249869683
+0.286625303
+0.320408538
+0.365627416
+0.216591083
+0.175961566
+0.155943708
+0.143300152
+0.130127899
+0.13016441
+0.155430637
+0.194686928
+0.218244828
+0.252456602
+0.285871453
+0.328347526
+0.370325163
+0.266412551
+0.18479826
+0.157641517
+0.137526992
+0.131223521
+0.130352899
+0.160792601
+0.195840987
+0.229135265
+0.258461377
+0.299856672
+0.334882924
+0.397506907
+0.351178137
+0.202939508
+0.157180112
+0.139191519
+0.130012171
+0.132661538
+0.151765388
+0.199271864
+0.229412973
+0.263476363
+0.298601937
+0.345989506
+0.370012353
+0.211895524
+0.167582477
+0.153078718
+0.13740767
+0.130744356
+0.130844721
+0.164428581
+0.199211603
+0.230938855
+0.261597098
+0.306730456
+0.341786864
+0.400735336
+0.218710766
+0.170886791
+0.151623254
+0.140588599
+0.13044217
+0.130193942
+0.155395274
+0.195569167
+0.224937101
+0.25860919
+0.296612726
+0.342383685
+0.38769548
+0.274335238
+0.177337814
+0.159716303
+0.144167911
+0.135397521
+0.127510512
+0.138669594
+0.180194472
+0.218176289
+0.240760754
+0.28128626
+0.320722446
+0.370876988
+0.3661507
+0.189204967
+0.157884017
+0.143949371
+0.129223632
+0.122382558
+0.121891518
+0.144208276
+0.178206354
+0.210602561
+0.23667837
+0.276199244
+0.310921434
+0.360390613
+0.36518586
+0.193705945
+0.157888861
+0.144057756
+0.128956237
+0.121353082
+0.120024701
+0.137674806
+0.174144231
+0.209707564
+0.234795356
+0.274380864
+0.310269562
+0.359853323
+0.376370932
+0.196819008
+0.161062759
+0.146340562
+0.131858261
+0.125056927
+0.123486358
+0.1447489
+0.182315405
+0.217735354
+0.243944965
+0.28520948
+0.323701346
+0.377078534
+0.331661949
+0.175954434
+0.14925545
+0.140411986
+0.12893452
+0.1233974
+0.123499431
+0.153197677
+0.184878002
+0.21754723
+0.248080578
+0.288934522
+0.326579411
+0.383061017
+0.311932475
+0.184702274
+0.158762818
+0.148654358
+0.135230439
+0.127443899
+0.126862547
+0.162605151
+0.19673276
+0.232322291
+0.263094232
+0.308915818
+0.347388049
+0.415429257
+0.247872715
+0.186995184
+0.16370046
+0.147104155
+0.129770872
+0.127693951
+0.134079192
+0.183098373
+0.2151188
+0.247281884
+0.282016574
+0.328627168
+0.373956046
+0.406543971
+0.202533629
+0.166483733
+0.147023791
+0.135847052
+0.125959373
+0.126568902
+0.135495387
+0.183250612
+0.210384855
+0.241995701
+0.275706229
+0.318186417
+0.363689878
+0.443313396
+0.575175669
+0.816616372
+8.688740505
+0.288212079
+0.19397855
+0.158544227
+0.136785904
+0.130662225
+0.135809501
+0.182670094
+0.219768267
+0.250378492
+0.282554804
+0.327693943
+0.369055959
+0.312034302
+0.174629961
+0.147873529
+0.129524884
+0.12120069
+0.116467266
+0.122416155
+0.150300189
+0.184221548
+0.203338889
+0.236839677
+0.269579217
+0.308963061
+0.347835135
+0.350533826
+0.188783983
+0.159253235
+0.138833295
+0.128703012
+0.122791988
+0.127679682
+0.143441094
+0.183687904
+0.210176369
+0.24163008
+0.274918421
+0.313994662
+0.356500632
+0.328623526
+0.179612447
+0.155570278
+0.138229547
+0.130756026
+0.125288438
+0.126709007
+0.148404466
+0.184576235
+0.210151682
+0.243723773
+0.276050293
+0.317774443
+0.363981861
+0.446067092
+0.490404828
+0.215649167
+0.155205175
+0.134109819
+0.124590785
+0.127213902
+0.137667205
+0.186802896
+0.218593064
+0.247590793
+0.282016735
+0.328153059
+0.369452784
+0.286231879
+0.170791588
+0.151436228
+0.139689126
+0.131839774
+0.128740148
+0.135242473
+0.174514703
+0.212282771
+0.232987554
+0.273615979
+0.311226338
+0.357624901
+0.298723405
+0.176254802
+0.149158474
+0.137004238
+0.124272817
+0.12242251
+0.125139117
+0.166257904
+0.19818703
+0.224173778
+0.254011192
+0.297392785
+0.333594555
+0.378270155
+0.208527677
+0.168237899
+0.149627588
+0.140054751
+0.12829343
+0.130203946
+0.141358914
+0.188332164
+0.220134415
+0.252467603
+0.286727452
+0.330631856
+0.376451723
+0.26735756
+0.166805559
+0.150073056
+0.135802003
+0.126954372
+0.118969968
+0.127010674
+0.164598743
+0.199976765
+0.218627336
+0.258008733
+0.295529822
+0.338304751
+0.379044841
+0.21129168
+0.162649009
+0.147280616
+0.128287754
+0.121483659
+0.119852935
+0.133392531
+0.167966025
+0.205074563
+0.229285379
+0.266893447
+0.301635066
+0.34927248
+0.343080206
+0.188325289
+0.157115483
+0.144545416
+0.131440453
+0.123816673
+0.121778034
+0.139443972
+0.175913502
+0.213141363
+0.237781292
+0.27672993
+0.315629609
+0.362391818
+0.326956972
+0.187241855
+0.158308188
+0.145021404
+0.130150562
+0.123379331
+0.120287517
+0.141172249
+0.177264904
+0.213075165
+0.238156968
+0.277882062
+0.316535492
+0.368008469
+0.349315866
+0.185564568
+0.155002938
+0.14216709
+0.127991193
+0.122269751
+0.120586422
+0.13580841
+0.171621015
+0.208663616
+0.232914119
+0.269938752
+0.308311506
+0.355515171
+0.383824205
+0.208229399
+0.163520362
+0.144806665
+0.126573593
+0.118618043
+0.117069714
+0.130899466
+0.16528546
+0.201680564
+0.224211853
+0.262141535
+0.298215494
+0.343980466
+0.393456313
+0.244758513
+0.154445232
+0.135909035
+0.122516782
+0.114356701
+0.109473225
+0.115466855
+0.14548083
+0.17763178
+0.198336876
+0.231375687
+0.265662151
+0.308264476
+0.347387905
+0.400603897
+0.208168775
+0.16608624
+0.14526729
+0.131750141
+0.119165542
+0.118734085
+0.12534542
+0.168054619
+0.198475313
+0.227617469
+0.259744459
+0.302439962
+0.340206989
+0.382032441
+0.195988237
+0.164697963
+0.146691557
+0.137887519
+0.12873765
+0.127717497
+0.132560868
+0.178995369
+0.210968923
+0.241480763
+0.273759836
+0.320569493
+0.361215939
+0.350402115
+0.172801585
+0.151518991
+0.138297258
+0.12872515
+0.118054139
+0.120956214
+0.140644959
+0.176763554
+0.205550554
+0.237409473
+0.273548848
+0.314518522
+0.355464706
+0.38408353
+0.189415913
+0.155604552
+0.14144902
+0.129159628
+0.118524502
+0.12195543
+0.127068593
+0.163904164
+0.195780113
+0.223794565
+0.25341302
+0.298210287
+0.335098462
+0.393538034
+0.229645329
+0.162112711
+0.142900317
+0.134763883
+0.123764487
+0.121513192
+0.122878344
+0.154781586
+0.187756908
+0.218578799
+0.248477722
+0.290523747
+0.325762813
+0.383452647
+0.272143227
+0.173300907
+0.148216605
+0.136817887
+0.12608995
+0.122160014
+0.121797046
+0.148006762
+0.181448332
+0.216870001
+0.244763984
+0.285302929
+0.322402719
+0.377749851
+0.31148775
+0.17899037
+0.152758311
+0.139445537
+0.124224799
+0.120339966
+0.120273768
+0.144549428
+0.178930267
+0.213076627
+0.240519778
+0.281068776
+0.318529814
+0.373420906
+0.371110964
+0.189297789
+0.156321373
+0.143901305
+0.128234684
+0.121321371
+0.122329232
+0.126427761
+0.166150043
+0.201470307
+0.222773839
+0.26284388
+0.299527317
+0.345608382
+0.394201576
+0.229800903
+0.166107127
+0.149456342
+0.132142433
+0.121513922
+0.116188
+0.125719587
+0.15631127
+0.193286372
+0.215460839
+0.252311359
+0.289450836
+0.334477321
+0.38185333
+0.296282066
+0.166361502
+0.147931294
+0.135361226
+0.127252811
+0.119530334
+0.121445797
+0.139096059
+0.178191624
+0.207227582
+0.238489524
+0.272248437
+0.31406738
+0.354920231
+0.352600603
+0.185318843
+0.15836366
+0.140590013
+0.128559839
+0.117235549
+0.118604191
+0.125666514
+0.16818134
+0.197155997
+0.225349197
+0.256325931
+0.299123204
+0.338443091
+0.40173916
+0.249541889
+0.169988835
+0.149049416
+0.139571527
+0.126334429
+0.123919905
+0.125811514
+0.159485689
+0.192763614
+0.223684619
+0.254264218
+0.297103471
+0.334020032
+0.393014238
+0.24171238
+0.168597537
+0.148948583
+0.139333975
+0.128287705
+0.123657563
+0.121793609
+0.15715981
+0.187600712
+0.219377965
+0.248580798
+0.290375366
+0.327381457
+0.383102704
+0.310104736
+0.177685637
+0.150783683
+0.139169497
+0.125863077
+0.121241892
+0.120250541
+0.145538333
+0.178232041
+0.211737154
+0.238766607
+0.278494879
+0.314234933
+0.367599676
+0.356965071
+0.18801118
+0.156043355
+0.142176259
+0.126851824
+0.121755849
+0.120317572
+0.136848097
+0.172259871
+0.208851433
+0.232053241
+0.271160109
+0.308301305
+0.357774236
+0.374591479
+0.196905321
+0.159631991
+0.146646403
+0.131470717
+0.122779492
+0.12114606
+0.129777129
+0.165253537
+0.202527025
+0.225145345
+0.262126437
+0.301316638
+0.345941822
+0.397912454
+0.249203089
+0.160322457
+0.142277406
+0.127388489
+0.119109399
+0.114508787
+0.119698355
+0.14812791
+0.182033385
+0.20600514
+0.237580622
+0.273584842
+0.317159561
+0.359994856
+0.36442302
+0.185304001
+0.157754184
+0.140481369
+0.129324266
+0.119646585
+0.121891631
+0.132541756
+0.172780234
+0.202004839
+0.234092664
+0.267375745
+0.309539948
+0.350217227
+0.405726704
+0.205674464
+0.15883064
+0.137836898
+0.127028178
+0.117348258
+0.116067116
+0.12070752
+0.157754289
+0.187316131
+0.216090267
+0.244518467
+0.286830638
+0.323230742
+0.376217362
+0.335855863
+0.184430515
+0.154260028
+0.141527564
+0.126685836
+0.118784921
+0.118108517
+0.134418678
+0.170679669
+0.205699985
+0.230578247
+0.267071008
+0.306458915
+0.353629823
+0.400187554
+0.224704098
+0.166140306
+0.149776343
+0.13511477
+0.126115994
+0.118562318
+0.123975323
+0.149910092
+0.186812643
+0.211928457
+0.247816323
+0.283349972
+0.326962972
+0.373005429
+0.343176378
+0.181591404
+0.156430264
+0.139705278
+0.129859106
+0.121346407
+0.122954146
+0.1302991
+0.171880216
+0.202737359
+0.233075707
+0.263580614
+0.307069414
+0.350389885
+0.416061045
+0.237634194
+0.16862459
+0.144792457
+0.131759661
+0.118793948
+0.118254059
+0.120158982
+0.149002455
+0.182236757
+0.212322505
+0.240115835
+0.281830335
+0.317172998
+0.367854621
+0.368187221
+0.192294339
+0.157909271
+0.143735448
+0.129932037
+0.125640426
+0.123687692
+0.136873456
+0.170932124
+0.208965894
+0.230862636
+0.269651865
+0.308448493
+0.357268426
+0.373339777
+0.1911728
+0.154623281
+0.141585588
+0.130339278
+0.12588444
+0.125599705
+0.136332532
+0.172001702
+0.210563436
+0.232591272
+0.270882332
+0.310645512
+0.358321505
+0.390304575
+0.20691901
+0.162192566
+0.145808873
+0.125203414
+0.116877325
+0.114702822
+0.122887246
+0.149458254
+0.185707886
+0.207091409
+0.241351899
+0.275814835
+0.320880657
+0.363681037
+0.353840644
+0.178162575
+0.152967955
+0.137595291
+0.126471425
+0.117659144
+0.120765875
+0.13178297
+0.170890744
+0.201289204
+0.229971591
+0.263069234
+0.302657158
+0.343259916
+0.404201207
+0.213753527
+0.164806716
+0.142563515
+0.131591939
+0.121071554
+0.119763862
+0.121820763
+0.150730702
+0.184822709
+0.215469864
+0.243485596
+0.285442291
+0.322225153
+0.376861478
+0.364171331
+0.192821676
+0.16056454
+0.144034649
+0.125249527
+0.118092693
+0.118346439
+0.129785303
+0.162260146
+0.198456449
+0.221944845
+0.258704682
+0.293539496
+0.339895619
+0.390931316
+0.275738793
+0.168909909
+0.150513636
+0.136147259
+0.126555298
+0.119999341
+0.12604718
+0.151152901
+0.189575532
+0.216263887
+0.251875878
+0.286753452
+0.332416255
+0.376857819
+0.25990979
+0.169838761
+0.152647679
+0.137887712
+0.128686111
+0.124580435
+0.131649146
+0.158092037
+0.198610427
+0.224689832
+0.261014785
+0.297908532
+0.346061671
+0.392784615
+0.277895199
+0.173338516
+0.15425626
+0.137069292
+0.126464948
+0.119966541
+0.127683058
+0.155733899
+0.195378551
+0.219062624
+0.252748133
+0.291223632
+0.334962767
+0.380705778
+0.260241114
+0.170530645
+0.151993432
+0.13511073
+0.125835015
+0.124782945
+0.136130041
+0.161832422
+0.202515502
+0.228507307
+0.265747094
+0.301676586
+0.351330233
+0.401404859
+0.27557885
+0.178552219
+0.155562197
+0.135763229
+0.126743187
+0.12182351
+0.130218195
+0.156413228
+0.19511722
+0.22033586
+0.255877806
+0.294313726
+0.337799068
+0.385026545
+0.320239186
+0.174618527
+0.151332675
+0.132659473
+0.12226127
+0.117064722
+0.124511659
+0.146712473
+0.183067642
+0.210219436
+0.24287715
+0.277099218
+0.320189462
+0.362940383
+0.359054443
+0.18527387
+0.159227896
+0.141766657
+0.130464611
+0.120697077
+0.125526288
+0.137222755
+0.180067793
+0.208384261
+0.238067795
+0.272649497
+0.314192885
+0.355058104
+0.361690834
+0.190669592
+0.166042923
+0.145467243
+0.129057084
+0.118891846
+0.123006899
+0.133133648
+0.174525475
+0.205384153
+0.235767992
+0.267358275
+0.312185581
+0.351158327
+0.409971031
+0.212907554
+0.164045092
+0.14391404
+0.132191843
+0.121155053
+0.122825762
+0.128172882
+0.162269542
+0.196154069
+0.224452728
+0.25546104
+0.298530921
+0.337590701
+0.394857021
+0.315140825
+0.181920451
+0.155009378
+0.138901037
+0.123820286
+0.120820323
+0.12429877
+0.155871974
+0.190461911
+0.219624517
+0.249933413
+0.291856123
+0.327797089
+0.383445931
+0.33180402
+0.18459803
+0.155728128
+0.141679655
+0.127806076
+0.120766008
+0.121375531
+0.139367757
+0.174561699
+0.209534029
+0.233979403
+0.27058442
+0.309388946
+0.356222484
+0.394403159
+0.217518156
+0.169231979
+0.151827454
+0.133542054
+0.127503326
+0.124548832
+0.135926036
+0.165190417
+0.205275862
+0.227368351
+0.264507842
+0.30233212
+0.349717685
+0.398189121
+0.268289263
+0.173018347
+0.156664485
+0.13815841
+0.122690111
+0.115760247
+0.122035484
+0.143425118
+0.180063056
+0.206157893
+0.238233437
+0.273423529
+0.313025964
+0.356196009
+0.387191153
+0.194851995
+0.164587365
+0.146042696
+0.132844992
+0.1205891
+0.125208264
+0.134170238
+0.171798842
+0.204508599
+0.234237976
+0.267224451
+0.310812099
+0.351024162
+0.418218137
+0.249822586
+0.177086648
+0.153125741
+0.139770019
+0.125479723
+0.124897909
+0.129790975
+0.163262808
+0.199925279
+0.233227011
+0.261091309
+0.304450109
+0.344339729
+0.408688169
+0.272402168
+0.169368104
+0.143603989
+0.12921109
+0.118633927
+0.11901382
+0.126562062
+0.153137053
+0.188931151
+0.220512123
+0.248234705
+0.287801106
+0.327690832
+0.381947
+0.368078735
+0.186907327
+0.153457211
+0.132801991
+0.11601709
+0.11367212
+0.114071073
+0.131744297
+0.165016084
+0.197086583
+0.219903131
+0.256233165
+0.291960808
+0.337584999
+0.387160135
+0.343445402
+0.178961963
+0.154302312
+0.134376302
+0.121422761
+0.113595667
+0.118898416
+0.135381865
+0.172933445
+0.200187493
+0.229722609
+0.263145959
+0.302701892
+0.345662158
+0.405361136
+0.275887478
+0.169456565
+0.145608466
+0.13068375
+0.115492056
+0.114662275
+0.119162169
+0.145390449
+0.177456472
+0.206801382
+0.233606377
+0.271420353
+0.308412411
+0.356984803
+0.395574397
+0.206769774
+0.158530348
+0.140014321
+0.122515103
+0.115484614
+0.114984307
+0.12813311
+0.157898901
+0.194827315
+0.214748018
+0.251665496
+0.287135491
+0.329998784
+0.378022436
+0.29652903
+0.171697492
+0.148676203
+0.12841431
+0.117256838
+0.112986784
+0.119156451
+0.135504382
+0.174427566
+0.200653506
+0.230391906
+0.26485832
+0.306336474
+0.347789372
+0.40274112
+0.218274188
+0.167117293
+0.142551336
+0.126418141
+0.11393782
+0.116791953
+0.123205054
+0.154963689
+0.188057621
+0.215787712
+0.244896068
+0.287978581
+0.324224559
+0.378188094
+0.339671934
+0.178795757
+0.148179713
+0.133098381
+0.11899813
+0.115955354
+0.118386002
+0.136482091
+0.169639513
+0.203440678
+0.228885278
+0.266193693
+0.303095291
+0.352093728
+0.398837504
+0.217319636
+0.161726382
+0.143136603
+0.127464131
+0.120530305
+0.117535705
+0.128496618
+0.153006539
+0.190215635
+0.217061468
+0.250049259
+0.288114699
+0.333859529
+0.380103367
+0.353286285
+0.179089467
+0.152704517
+0.146044023
+0.110201161
+0.114190021
+0.118955329
+0.13446869
+0.173165686
+0.201536501
+0.229618155
+0.264382749
+0.306225646
+0.348023288
+0.409476271
+0.272323494
+0.167517061
+0.140841747
+0.127140916
+0.118989136
+0.117256449
+0.120734949
+0.151855004
+0.183635313
+0.213160753
+0.241582297
+0.281795476
+0.318560571
+0.371069653
+0.389997922
+0.203498056
+0.158344571
+0.139817963
+0.123783721
+0.117676449
+0.117714157
+0.131983105
+0.162723896
+0.198574264
+0.220545989
+0.259190698
+0.296876772
+0.343517019
+0.392760095
+0.310144176
+0.177011707
+0.153964108
+0.133755487
+0.122113174
+0.114606489
+0.122149371
+0.137870805
+0.177856595
+0.207190944
+0.235720563
+0.27171546
+0.315549907
+0.356891411
+0.42780023
+0.254498062
+0.16622262
+0.142876377
+0.130542561
+0.120471896
+0.120176066
+0.125421632
+0.157587253
+0.191067077
+0.221263396
+0.250743786
+0.294094021
+0.331198961
+0.388076434
+0.358346623
+0.190455319
+0.157761422
+0.142389306
+0.126961254
+0.122153028
+0.124128424
+0.13716817
+0.17474998
+0.208945683
+0.231222563
+0.271876891
+0.311758104
+0.35832653
+0.413354864
+0.277966463
+0.179118633
+0.159425941
+0.13765921
+0.125756327
+0.120304358
+0.127959948
+0.152575969
+0.189632057
+0.21557796
+0.249127371
+0.285884714
+0.327204088
+0.373078412
+0.356916932
+0.177703761
+0.154943551
+0.134579876
+0.121750649
+0.113946102
+0.117292627
+0.129746027
+0.169767968
+0.19561054
+0.223395433
+0.256785682
+0.294987592
+0.335142137
+0.390512764
+0.284404331
+0.172337527
+0.147100573
+0.136165126
+0.11664816
+0.117956738
+0.121692478
+0.144431126
+0.177050914
+0.209179353
+0.236175613
+0.275371577
+0.311606948
+0.361364618
+0.405327979
+0.224783193
+0.169829334
+0.1508033
+0.133021626
+0.126070558
+0.123317881
+0.133428132
+0.165506364
+0.202955839
+0.226320474
+0.264098382
+0.302932164
+0.348112335
+0.399464834
+0.279434464
+0.171628853
+0.151434029
+0.136600446
+0.127872002
+0.122276179
+0.128685275
+0.149699153
+0.186958735
+0.215763205
+0.247735817
+0.283843797
+0.326643839
+0.372774732
+0.353311617
+0.181767861
+0.15656403
+0.140386347
+0.129635738
+0.119656631
+0.12396377
+0.135020938
+0.176303601
+0.206071968
+0.235745753
+0.26823013
+0.31119866
+0.352110656
+0.413621376
+0.227088144
+0.170273311
+0.145315517
+0.132257954
+0.120209547
+0.122487958
+0.128622422
+0.165347377
+0.197194992
+0.225610771
+0.258749256
+0.300080828
+0.33873785
+0.395866591
+0.307865017
+0.181012001
+0.153488609
+0.139097051
+0.12730442
+0.12684578
+0.128404461
+0.144027517
+0.181569758
+0.217281394
+0.241809455
+0.281709534
+0.318553764
+0.369126591
+0.4015917
+0.213355974
+0.167676792
+0.147959614
+0.129557058
+0.123651393
+0.124148627
+0.134252214
+0.163367728
+0.201701991
+0.225028036
+0.262221428
+0.299877628
+0.345248015
+0.394064821
+0.314688043
+0.179790155
+0.152501498
+0.134245345
+0.126237568
+0.120810388
+0.128019163
+0.143938521
+0.184034069
+0.21156611
+0.244737673
+0.27756773
+0.320557103
+0.363289863
+0.413014944
+0.207648294
+0.167376913
+0.148324987
+0.13553169
+0.122963911
+0.123674999
+0.129173376
+0.168824296
+0.202518198
+0.228668223
+0.258429982
+0.302559449
+0.339571283
+0.399746356
+0.262319007
+0.182091604
+0.161179488
+0.147868852
+0.131191015
+0.128066102
+0.128321881
+0.151329025
+0.188064353
+0.22145602
+0.248905513
+0.286900361
+0.325354578
+0.38025372
+0.326199989
+0.184331586
+0.156567617
+0.138165682
+0.122762361
+0.12141795
+0.124021151
+0.144362752
+0.179562995
+0.212436023
+0.239770674
+0.27711449
+0.314828039
+0.363965265
+0.405108521
+0.215910366
+0.166538871
+0.148693751
+0.130981809
+0.123071271
+0.121043793
+0.131054882
+0.159605562
+0.197361403
+0.218776327
+0.254924324
+0.291041642
+0.334678097
+0.383096952
+0.294409526
+0.174604206
+0.157298143
+0.139613387
+0.12859757
+0.122690447
+0.128174606
+0.148408554
+0.188095157
+0.215196323
+0.248573882
+0.284013605
+0.328197607
+0.371917868
+0.377219271
+0.189814258
+0.161943569
+0.141822276
+0.12744113
+0.118440705
+0.122750034
+0.135256514
+0.17481463
+0.205686694
+0.233448429
+0.266864998
+0.308566738
+0.350115407
+0.412849946
+0.253891182
+0.168675325
+0.143996946
+0.128694819
+0.116617397
+0.117602906
+0.122401969
+0.155221045
+0.187505491
+0.21433932
+0.243647028
+0.284541381
+0.321200573
+0.374445112
+0.350817344
+0.185559058
+0.156831919
+0.142016817
+0.126178496
+0.121806721
+0.123529514
+0.139084921
+0.174708499
+0.211314776
+0.234179951
+0.27019691
+0.307705052
+0.357113227
+0.388658934
+0.208249448
+0.165048504
+0.147880458
+0.130836473
+0.123882745
+0.120169138
+0.132889784
+0.164500802
+0.202347276
+0.223217264
+0.262441275
+0.298994323
+0.344668997
+0.394689926
+0.303503603
+0.177412858
+0.157457342
+0.137065839
+0.126363296
+0.119645815
+0.13082028
+0.15730651
+0.196953695
+0.22060303
+0.256423744
+0.291808057
+0.337630439
+0.383807348
+0.287227641
+0.169436022
+0.152272612
+0.133439529
+0.12424348
+0.118209325
+0.126855588
+0.144809721
+0.183839517
+0.210731424
+0.243086499
+0.27767551
+0.321091719
+0.364441318
+0.408885589
+0.19900129
+0.162277199
+0.140596438
+0.125812166
+0.117631315
+0.123843072
+0.134277233
+0.172615372
+0.202302249
+0.232826148
+0.265772208
+0.306228971
+0.347439844
+0.412647857
+0.250432164
+0.16941812
+0.144567599
+0.127427311
+0.114332291
+0.115055565
+0.119325103
+0.15055212
+0.18337506
+0.208679222
+0.236307683
+0.278739635
+0.313161568
+0.363185786
+0.355112068
+0.186921015
+0.15661925
+0.140822488
+0.123155016
+0.117585491
+0.118147047
+0.133932403
+0.167072371
+0.203255015
+0.225846238
+0.263030902
+0.299819478
+0.346296966
+0.395661295
+0.241043739
+0.164988596
+0.14726451
+0.130853795
+0.120534006
+0.115430361
+0.125208958
+0.150539476
+0.185930724
+0.207968828
+0.240949527
+0.276599938
+0.317553422
+0.359461216
+0.308326852
+0.171662229
+0.148542835
+0.13087031
+0.121534313
+0.116248483
+0.12323992
+0.142930967
+0.182187226
+0.209364238
+0.239922828
+0.277682281
+0.318302278
+0.362848331
+0.403625253
+0.200347877
+0.160853026
+0.136398018
+0.120740523
+0.113217841
+0.116748117
+0.127614307
+0.166689059
+0.195619857
+0.22368113
+0.255138358
+0.293597231
+0.334219785
+0.392756266
+0.247950726
+0.17163917
+0.147893426
+0.135527199
+0.124471844
+0.125502302
+0.130324909
+0.161391673
+0.196882559
+0.22860114
+0.257837402
+0.299822491
+0.338803239
+0.399596367
+0.278531567
+0.155416843
+0.128529776
+0.116613336
+0.108036548
+0.108910498
+0.113211964
+0.139940075
+0.168365981
+0.193891086
+0.221133985
+0.257805954
+0.288240069
+0.332939093
+0.289425945
+0.153989935
+0.126113918
+0.112994573
+0.104857469
+0.107454944
+0.111125688
+0.136818654
+0.164743682
+0.190087172
+0.214419111
+0.249825211
+0.281014736
+0.325809592
+0.256610871
+0.149790608
+0.124011965
+0.110924963
+0.102861035
+0.105632673
+0.111322042
+0.13684022
+0.164553115
+0.188613028
+0.215184476
+0.25224014
+0.283077431
+0.328223121
+0.292218278
+0.157717823
+0.129637015
+0.116594232
+0.107666615
+0.10690881
+0.110053882
+0.132017983
+0.160307799
+0.188874228
+0.215641144
+0.249508094
+0.282193075
+0.327960735
+0.318613906
+0.161373938
+0.130876539
+0.118000107
+0.107695054
+0.107818804
+0.108347131
+0.127822196
+0.157836788
+0.18866382
+0.211307653
+0.245231737
+0.2794003
+0.322666583
+0.325265879
+0.16175274
+0.130808627
+0.118566303
+0.106963087
+0.10562284
+0.105784973
+0.119826655
+0.149430366
+0.181047964
+0.202375563
+0.235898715
+0.269302128
+0.3130495
+0.346640363
+0.173032372
+0.127167156
+0.113902864
+0.104300772
+0.102950422
+0.102276054
+0.111497784
+0.135615563
+0.165393388
+0.184430437
+0.213439311
+0.247039236
+0.287291332
+0.322666342
+0.243494012
+0.137874137
+0.119369531
+0.106762782
+0.104452077
+0.104042706
+0.111620234
+0.133325017
+0.164516266
+0.186015219
+0.216069969
+0.248199074
+0.285383389
+0.327448752
+0.297797539
+0.148186902
+0.125862959
+0.11122873
+0.104869628
+0.102758503
+0.109196981
+0.124558598
+0.157149939
+0.183210928
+0.209219731
+0.241765085
+0.278792632
+0.316275435
+0.305255025
+0.149850015
+0.125914577
+0.110965455
+0.105896235
+0.102820798
+0.107639134
+0.123130855
+0.155365013
+0.180580388
+0.208213758
+0.239433135
+0.27725406
+0.312832146
+0.31734455
+0.1555059
+0.127924716
+0.111364465
+0.103316682
+0.100917331
+0.106541649
+0.120318075
+0.151860678
+0.178065209
+0.204335573
+0.23343362
+0.272176516
+0.306561383
+0.328464501
+0.16072174
+0.129088564
+0.112631383
+0.103770534
+0.100569158
+0.105973532
+0.121474889
+0.151781933
+0.178196359
+0.203045177
+0.232541082
+0.269868837
+0.305212397
+0.316377182
+0.155594866
+0.126487499
+0.111858685
+0.103473873
+0.10010698
+0.103808193
+0.115575941
+0.147547864
+0.17267595
+0.199841202
+0.227087342
+0.263700574
+0.301786135
+0.347817661
+0.189683442
+0.132826868
+0.112898105
+0.104709853
+0.099921828
+0.103710331
+0.110507764
+0.141477356
+0.167833295
+0.19350648
+0.217949624
+0.256234768
+0.290998595
+0.337975947
+0.225586062
+0.137764634
+0.116971089
+0.107873368
+0.100497554
+0.102570034
+0.109042471
+0.135262525
+0.1641612
+0.189187048
+0.212785984
+0.251305502
+0.285131733
+0.329422757
+0.241404665
+0.14376307
+0.121033032
+0.111235732
+0.104557933
+0.102976803
+0.108521072
+0.135998512
+0.163157621
+0.189431999
+0.214253215
+0.250310778
+0.285140648
+0.328964543
+0.237538667
+0.138941454
+0.115937773
+0.107838895
+0.102875089
+0.104302367
+0.110822928
+0.140197224
+0.168856424
+0.192659264
+0.220714617
+0.258464614
+0.291731633
+0.335848443
+0.173342374
+0.131515958
+0.115275543
+0.107905927
+0.104335337
+0.108191446
+0.118369419
+0.150356243
+0.178248004
+0.20490186
+0.231469883
+0.270612002
+0.307131441
+0.311069528
+0.154239021
+0.126287209
+0.111450426
+0.104918877
+0.102594681
+0.108583842
+0.125698728
+0.157518679
+0.18411092
+0.210753162
+0.241629479
+0.278710734
+0.31534814
+0.318906075
+0.15379976
+0.124741969
+0.111020175
+0.105067836
+0.102643902
+0.110960956
+0.131745443
+0.162574156
+0.188609529
+0.215522706
+0.248314941
+0.288080338
+0.325517062
+0.254704048
+0.140255675
+0.120609928
+0.109057643
+0.104969455
+0.104113057
+0.114701549
+0.137918095
+0.171607094
+0.192790118
+0.223717684
+0.258234072
+0.299850285
+0.337442371
+0.185759773
+0.134909013
+0.119990302
+0.108880827
+0.106526995
+0.106916574
+0.120933366
+0.148262113
+0.180086392
+0.203824966
+0.236753191
+0.271360567
+0.316219564
+0.345690428
+0.176088256
+0.134648862
+0.121511332
+0.111131016
+0.108740988
+0.109571501
+0.131038065
+0.15976055
+0.193827671
+0.217326247
+0.254763339
+0.288974312
+0.333712113
+0.280513562
+0.149997105
+0.126261239
+0.117152524
+0.109215464
+0.110120717
+0.114533694
+0.137387851
+0.167617511
+0.198377217
+0.222702661
+0.261379531
+0.294627495
+0.342922557
+0.240458484
+0.143762689
+0.121017593
+0.109664005
+0.103549064
+0.10535561
+0.112945589
+0.139649032
+0.169576507
+0.196113806
+0.222295015
+0.258706023
+0.293542515
+0.340599827
+0.239112463
+0.14190266
+0.120355157
+0.110470927
+0.104155414
+0.10641883
+0.112043465
+0.138244363
+0.167059765
+0.1947682
+0.221812474
+0.258045098
+0.293249975
+0.339472505
+0.257426669
+0.144404826
+0.121511503
+0.112123051
+0.103896149
+0.10513369
+0.110793011
+0.131392555
+0.160176345
+0.189428723
+0.212687099
+0.249320866
+0.281885192
+0.327407106
+0.276502018
+0.144406289
+0.120472869
+0.111582485
+0.103769695
+0.105223639
+0.109418132
+0.132629058
+0.157904445
+0.186955003
+0.212796217
+0.247674637
+0.279974179
+0.325249272
+0.303353593
+0.154279846
+0.126729065
+0.115913958
+0.107273103
+0.108151324
+0.112960132
+0.136245225
+0.165116567
+0.19630591
+0.22071417
+0.258890373
+0.293802231
+0.338384366
+0.220616257
+0.139313168
+0.118907423
+0.109284179
+0.105389165
+0.109410845
+0.116871245
+0.144064687
+0.176040896
+0.201228941
+0.226725732
+0.265111676
+0.300158847
+0.348603184
+0.212174883
+0.139028175
+0.119967416
+0.11142083
+0.104822507
+0.10781227
+0.115786258
+0.143074752
+0.172779578
+0.199616358
+0.225522106
+0.262499624
+0.298354705
+0.340830195
+0.179942327
+0.136286277
+0.118971751
+0.110582976
+0.105606148
+0.111278074
+0.121137774
+0.153232682
+0.18371771
+0.209428823
+0.237089815
+0.27878625
+0.315308982
+0.346221089
+0.171362933
+0.134160936
+0.116552923
+0.107437071
+0.103645804
+0.1091807
+0.120696635
+0.153481901
+0.182373197
+0.209456382
+0.23736107
+0.274828637
+0.312512507
+0.356842929
+0.182551842
+0.137810228
+0.118561345
+0.110234653
+0.106228648
+0.111735576
+0.123932649
+0.155683188
+0.185416505
+0.212951979
+0.242636289
+0.282024777
+0.317158252
+0.344824769
+0.169608896
+0.134125474
+0.116587408
+0.107022809
+0.103020347
+0.108576076
+0.118322809
+0.149413408
+0.177771113
+0.204644562
+0.233709605
+0.270139738
+0.307762672
+0.356702949
+0.18630015
+0.135957181
+0.117604017
+0.108116605
+0.10381128
+0.107839315
+0.117636882
+0.149132059
+0.177883043
+0.20449056
+0.23034704
+0.269637822
+0.306490556
+0.35670572
+0.221927849
+0.138821167
+0.116959078
+0.106525944
+0.101761926
+0.105852514
+0.112301517
+0.13969038
+0.169102608
+0.192411196
+0.217074979
+0.255161974
+0.2908705
+0.333505628
+0.281857147
+0.149584666
+0.123027463
+0.10973045
+0.100749021
+0.101756825
+0.106886518
+0.128788816
+0.155883151
+0.183808781
+0.20802085
+0.243151778
+0.273600664
+0.317661878
+0.31780771
+0.156773406
+0.124741304
+0.113025318
+0.102578748
+0.10271708
+0.105651532
+0.123478244
+0.148835407
+0.180673449
+0.202545332
+0.233417604
+0.26776906
+0.311309182
+0.350401274
+0.20626025
+0.139148884
+0.122769972
+0.111724552
+0.108932858
+0.109075045
+0.122068729
+0.149528114
+0.184215818
+0.205666872
+0.239160107
+0.273335891
+0.31654555
+0.330441152
+0.167754668
+0.134448879
+0.121539935
+0.110147486
+0.108326618
+0.108743592
+0.124674645
+0.152712463
+0.186963037
+0.204491785
+0.24180905
+0.276302641
+0.316604931
+0.334771019
+0.171241047
+0.131829374
+0.117808721
+0.106181222
+0.104811651
+0.105884768
+0.121070359
+0.148340424
+0.180046646
+0.2013989
+0.234624224
+0.267464865
+0.310756139
+0.346354514
+0.185508214
+0.133384573
+0.118694393
+0.107468922
+0.107285851
+0.108942763
+0.121111247
+0.146316695
+0.18015514
+0.20213916
+0.235013654
+0.270712394
+0.313109355
+0.353597689
+0.219421141
+0.137847035
+0.120310006
+0.108005119
+0.105167071
+0.104107081
+0.11340335
+0.133829937
+0.166619902
+0.188027208
+0.21786569
+0.249892641
+0.288448023
+0.3257918
+0.2800018
+0.150464009
+0.126215582
+0.110622388
+0.105505195
+0.10583264
+0.113166689
+0.128668894
+0.162596401
+0.188992466
+0.215581706
+0.247901154
+0.287229657
+0.323732923
+0.316243459
+0.163256762
+0.135246286
+0.119620749
+0.113833509
+0.10790726
+0.112362428
+0.130807106
+0.163129681
+0.191041983
+0.219346887
+0.249697552
+0.291027181
+0.3305036
+0.280977951
+0.147602479
+0.124847214
+0.111662593
+0.107109509
+0.106941074
+0.114991835
+0.135534828
+0.170145821
+0.195411116
+0.2241694
+0.25971924
+0.301109443
+0.340244875
+0.274085466
+0.152213796
+0.133509224
+0.121664851
+0.118205663
+0.115752039
+0.125441327
+0.147744514
+0.186163964
+0.213716531
+0.24731045
+0.28389804
+0.32961503
+0.375697121
+0.292758432
+0.158192914
+0.137780232
+0.12453035
+0.119602633
+0.116007613
+0.12799235
+0.151015375
+0.191599076
+0.215389647
+0.252194997
+0.287589786
+0.332628762
+0.378901999
+0.283649719
+0.169750315
+0.149659453
+0.135003438
+0.129217395
+0.125750759
+0.137845235
+0.161990438
+0.207990498
+0.234721618
+0.272882998
+0.313285139
+0.363712716
+0.404932872
+0.209019555
+0.159532286
+0.140043032
+0.125254934
+0.123294222
+0.124969051
+0.143046079
+0.177012653
+0.214557842
+0.239744653
+0.279379771
+0.319449677
+0.367166238
+0.357898092
+0.186983038
+0.152355531
+0.136937438
+0.122170225
+0.120281284
+0.12405125
+0.146061889
+0.18053471
+0.214750346
+0.241468134
+0.283369952
+0.318728443
+0.372161255
+0.286121337
+0.170171003
+0.143568998
+0.130396144
+0.119001297
+0.11895984
+0.12356105
+0.149054523
+0.18305386
+0.213333021
+0.240924915
+0.2810242
+0.316790657
+0.368171039
+0.286824516
+0.167810403
+0.141057148
+0.126627066
+0.116699758
+0.121384092
+0.128391844
+0.153122357
+0.189487403
+0.220580411
+0.248890476
+0.289441373
+0.327640154
+0.381515204
+0.231937555
+0.159771989
+0.137836973
+0.128048256
+0.120163689
+0.12272549
+0.127438209
+0.160777919
+0.195516679
+0.223455862
+0.253749347
+0.295492057
+0.333952296
+0.38973733
+0.216806183
+0.161163596
+0.138385409
+0.125696301
+0.117375019
+0.11992557
+0.12781097
+0.162130774
+0.194606379
+0.221604426
+0.25221869
+0.295008786
+0.332617368
+0.388432352
+0.209925206
+0.156312444
+0.134696591
+0.122955963
+0.116743101
+0.120753847
+0.130343712
+0.169189104
+0.199227749
+0.227294018
+0.259045461
+0.300511195
+0.340379184
+0.350550764
+0.177610544
+0.150023492
+0.131196832
+0.121176191
+0.117780908
+0.123684971
+0.137771672
+0.177531744
+0.204809113
+0.235753741
+0.269699543
+0.310836531
+0.353039603
+0.323642309
+0.165522997
+0.142027315
+0.12505267
+0.118537778
+0.11624535
+0.125647405
+0.144057351
+0.182480405
+0.208206745
+0.240936202
+0.275755956
+0.316066755
+0.361241105
+0.283352559
+0.162313186
+0.138590369
+0.121434162
+0.116804567
+0.117911901
+0.127540725
+0.151038127
+0.189091446
+0.213745402
+0.246424963
+0.283435218
+0.326681985
+0.370154319
+0.258138668
+0.156945476
+0.140029215
+0.126626518
+0.122458793
+0.123288369
+0.12800536
+0.15466336
+0.19255288
+0.215342685
+0.251224929
+0.287956645
+0.331496274
+0.373567061
+0.209956327
+0.151703909
+0.133270839
+0.115523959
+0.11293919
+0.114800059
+0.128983844
+0.157460684
+0.194352765
+0.21632414
+0.250719837
+0.286061149
+0.331821122
+0.376148091
+0.239108167
+0.153923165
+0.136230348
+0.118489353
+0.114909749
+0.117723371
+0.130146859
+0.155471226
+0.192753668
+0.21580519
+0.251078121
+0.284770647
+0.328320119
+0.374078898
+0.23382728
+0.1514847
+0.133325167
+0.117409053
+0.112510345
+0.111624311
+0.124282746
+0.150609657
+0.186302062
+0.205553305
+0.241735809
+0.275860365
+0.317989227
+0.36014142
+0.234882382
+0.150178413
+0.13249997
+0.117883375
+0.112024049
+0.11124666
+0.124690921
+0.148391606
+0.184177241
+0.205374249
+0.239278337
+0.273009353
+0.313985049
+0.355492511
+0.237802831
+0.150249718
+0.131438107
+0.11816848
+0.115634282
+0.114817518
+0.126886583
+0.151713874
+0.188404032
+0.211489254
+0.247867437
+0.282088502
+0.326592084
+0.375313552
+0.460145961
+0.606553895
+0.902612498
+2.8557782720000002
+0.214668823
+0.15972444
+0.133188309
+0.115100128
+0.112903218
+0.116664021
+0.136174014
+0.170000866
+0.204705106
+0.227600851
+0.264382106
+0.299789051
+0.345952049
+0.310385264
+0.163318998
+0.136128028
+0.12182622
+0.109763091
+0.10825326
+0.110856624
+0.130889737
+0.158275186
+0.187338277
+0.209480696
+0.243849992
+0.273904429
+0.317155684
+0.352867053
+0.190582836
+0.141134915
+0.124458597
+0.111455893
+0.10851722
+0.109264349
+0.121387685
+0.144864625
+0.178392365
+0.198893133
+0.230137717
+0.262604999
+0.305275164
+0.342817196
+0.254231477
+0.145739463
+0.126732122
+0.112720572
+0.107661968
+0.106468854
+0.11554857
+0.137943748
+0.171488834
+0.1918758
+0.22185555
+0.254338511
+0.297428831
+0.333369001
+0.259877321
+0.14519968
+0.124812193
+0.110528041
+0.104297311
+0.102894875
+0.112418651
+0.133318217
+0.16578477
+0.185987781
+0.215129883
+0.24918783
+0.288575524
+0.325240066
+0.360339724
+0.171605193
+0.135675751
+0.117528662
+0.108304052
+0.103479716
+0.107147603
+0.117521684
+0.14843622
+0.177581343
+0.202983061
+0.230032577
+0.268099972
+0.304524982
+0.357170747
+0.413144609
+0.540503715
+0.744795054
+1.243963082
+0.228832335
+0.151214796
+0.129516277
+0.123994135
+0.121624675
+0.129353259
+0.153390665
+0.194796158
+0.223017541
+0.256451433
+0.294093363
+0.339671428
+0.337522644
+0.175262415
+0.138570112
+0.124810121
+0.113391048
+0.109900504
+0.111370492
+0.125635635
+0.152340208
+0.184726349
+0.206253621
+0.240698808
+0.271846209
+0.31455289
+0.353455751
+0.203409428
+0.144880428
+0.128814466
+0.114828175
+0.110348732
+0.110022017
+0.120117611
+0.142498
+0.1771848
+0.199094256
+0.229626143
+0.262140097
+0.303387467
+0.342059705
+0.247218971
+0.147309214
+0.128719782
+0.11492078
+0.110093892
+0.10833224
+0.116006813
+0.134795307
+0.169754292
+0.191190107
+0.221678452
+0.254880577
+0.2954878
+0.332219584
+0.300416823
+0.154541918
+0.130189461
+0.115615309
+0.108922343
+0.104892323
+0.110568996
+0.126511366
+0.159725678
+0.184807298
+0.212327596
+0.244464365
+0.281472711
+0.318367412
+0.362697106
+0.183070752
+0.149303162
+0.132035907
+0.120349908
+0.112543149
+0.113793972
+0.123168115
+0.158853815
+0.18802337
+0.216927198
+0.245771758
+0.284956543
+0.321868015
+0.343633778
+0.172394697
+0.142241921
+0.124459878
+0.113342832
+0.109433124
+0.116239371
+0.126628975
+0.161527547
+0.190563666
+0.218335056
+0.247865963
+0.287319136
+0.325868303
+0.344722577
+0.170475601
+0.137617274
+0.120460798
+0.112672267
+0.107562829
+0.112612007
+0.122998382
+0.155933116
+0.186163914
+0.213303852
+0.241460188
+0.281258669
+0.318370037
+0.369757072
+0.200748538
+0.145588462
+0.123710201
+0.114698816
+0.108476366
+0.112674353
+0.120943558
+0.151362115
+0.183114463
+0.209043004
+0.237806056
+0.276450849
+0.313792112
+0.363961449
+0.213738074
+0.144675296
+0.122685628
+0.111868007
+0.105145197
+0.107930227
+0.113366642
+0.142828853
+0.171326333
+0.194589583
+0.220510678
+0.258123085
+0.292480311
+0.337792083
+0.320203735
+0.160577359
+0.127502989
+0.112509724
+0.099366756
+0.097558541
+0.098916134
+0.113399716
+0.138370506
+0.167759334
+0.186785953
+0.218272836
+0.247345312
+0.28737541
+0.324391104
+0.321400867
+0.155406883
+0.128026216
+0.110966301
+0.103102197
+0.099116343
+0.103766879
+0.114406377
+0.144493221
+0.170736917
+0.195001568
+0.223509519
+0.260062039
+0.294071872
+0.34137634
+0.277680547
+0.141894234
+0.115042781
+0.10477453
+0.09705605
+0.09746162
+0.101689242
+0.122448712
+0.1465955
+0.173791325
+0.195657973
+0.229078644
+0.257411285
+0.302070461
+0.338836523
+0.28206182
+0.154588146
+0.131873639
+0.114838462
+0.107338261
+0.105521505
+0.112723896
+0.129254285
+0.163945417
+0.190398384
+0.220746685
+0.253097939
+0.293306422
+0.332215489
+0.348724838
+0.16932048
+0.136784073
+0.118816819
+0.110908132
+0.106482021
+0.112518535
+0.121393778
+0.154783565
+0.185701862
+0.212311913
+0.241119497
+0.282255317
+0.319517941
+0.369835304
+0.208601423
+0.148437524
+0.127676074
+0.11704444
+0.110710635
+0.112829473
+0.117286157
+0.145276873
+0.17708584
+0.203836098
+0.229430949
+0.268948814
+0.304402024
+0.35182186
+0.236086627
+0.153059991
+0.129738977
+0.119065676
+0.110220797
+0.110136163
+0.115796171
+0.142092266
+0.174585239
+0.20205221
+0.228867832
+0.2680219
+0.301970435
+0.349198866
+0.269849804
+0.15411884
+0.128352012
+0.11499545
+0.105589065
+0.10626005
+0.111065689
+0.132211565
+0.1608841
+0.190668763
+0.214251806
+0.250394335
+0.284508286
+0.329764183
+0.350283762
+0.180169628
+0.139273282
+0.125363132
+0.113168228
+0.109310705
+0.108364046
+0.121513422
+0.148664252
+0.182604141
+0.203262001
+0.236155026
+0.27150678
+0.312861248
+0.355756591
+0.217726838
+0.144363766
+0.127722438
+0.114534624
+0.111019183
+0.109341645
+0.120415778
+0.143593357
+0.17920037
+0.199431514
+0.230884029
+0.26568256
+0.306734428
+0.346337139
+0.262797688
+0.15215949
+0.131104602
+0.114840875
+0.109828466
+0.110297733
+0.120011251
+0.141264992
+0.177693302
+0.200983121
+0.232564802
+0.267851506
+0.308947333
+0.350187846
+0.262503893
+0.150696899
+0.130642577
+0.114581088
+0.108772904
+0.10879332
+0.118812305
+0.140161566
+0.174628694
+0.198246011
+0.229288947
+0.264130968
+0.306508764
+0.346148301
+0.317219673
+0.16528981
+0.14079047
+0.12298717
+0.115504937
+0.110815912
+0.11864059
+0.133328497
+0.171067006
+0.198508199
+0.228377187
+0.262377029
+0.300717201
+0.34040106
+0.317521188
+0.162843895
+0.135163954
+0.118082159
+0.109922482
+0.106237563
+0.112447463
+0.125302833
+0.160871985
+0.187987609
+0.214754068
+0.245957889
+0.285282743
+0.322613601
+0.367873199
+0.189006769
+0.146915636
+0.125302938
+0.114038026
+0.108002135
+0.112796889
+0.122517595
+0.1534897
+0.185131072
+0.209951037
+0.238468838
+0.277788743
+0.314442733
+0.345197393
+0.172651378
+0.137941594
+0.120026471
+0.110496077
+0.107842816
+0.111609661
+0.119892411
+0.150367436
+0.179989136
+0.206968146
+0.234876319
+0.272525456
+0.309258246
+0.360030671
+0.21328383
+0.14527227
+0.125570702
+0.115756037
+0.108194221
+0.113893396
+0.117248319
+0.14335265
+0.174529181
+0.203065838
+0.229250793
+0.268570179
+0.303218612
+0.351518815
+0.278777967
+0.15561636
+0.131215714
+0.118037116
+0.107273032
+0.109573639
+0.114165063
+0.129341717
+0.160740436
+0.190609635
+0.213953623
+0.252110206
+0.283211219
+0.326573649
+0.343156595
+0.17329305
+0.137843322
+0.12326661
+0.111032433
+0.108182351
+0.108827398
+0.128754016
+0.155677665
+0.190891406
+0.212864312
+0.247619048
+0.280433224
+0.325396944
+0.351666589
+0.179689411
+0.139037898
+0.122645523
+0.109418124
+0.107258089
+0.109395
+0.123832442
+0.15060203
+0.184188701
+0.204239694
+0.238506778
+0.273406617
+0.315723534
+0.358099515
+0.200490194
+0.141070959
+0.124811968
+0.110555566
+0.108466467
+0.109102192
+0.121273505
+0.143991405
+0.179045619
+0.20159399
+0.23421671
+0.269717586
+0.310168999
+0.351153897
+0.237437157
+0.147128258
+0.128206059
+0.115169595
+0.111989933
+0.112542636
+0.124932021
+0.145363012
+0.184429539
+0.208591909
+0.240124588
+0.276787331
+0.318864564
+0.361560857
+0.234169686
+0.14781836
+0.12896168
+0.114344864
+0.109311725
+0.110807757
+0.122434387
+0.143207407
+0.178784742
+0.20293482
+0.236372797
+0.271719458
+0.312436338
+0.353934254
+0.240576257
+0.149239551
+0.131178333
+0.117324271
+0.112700504
+0.109134854
+0.117715727
+0.141866795
+0.176241015
+0.19858668
+0.230512585
+0.265743049
+0.306827168
+0.34664942
+0.294497
+0.155456851
+0.130981984
+0.114546846
+0.108497777
+0.107428723
+0.114084662
+0.13191557
+0.166944942
+0.191421893
+0.21865471
+0.251066602
+0.291364529
+0.330299914
+0.325015111
+0.164197934
+0.137708914
+0.11994311
+0.110424744
+0.105732852
+0.110846304
+0.121502369
+0.156547315
+0.183842683
+0.211536068
+0.240828507
+0.279124522
+0.317746993
+0.367766151
+0.209857647
+0.148944822
+0.128197894
+0.115992725
+0.108918091
+0.112860509
+0.117151415
+0.145899221
+0.179064337
+0.204416387
+0.232961538
+0.272858272
+0.307741554
+0.357214361
+0.260871123
+0.152629642
+0.1280717
+0.118763332
+0.11047381
+0.111498126
+0.117531153
+0.14092775
+0.174135939
+0.20327692
+0.228569961
+0.267132382
+0.302557066
+0.349621248
+0.254053939
+0.151813556
+0.12828321
+0.116484705
+0.109315436
+0.111725783
+0.118853907
+0.143232527
+0.177226076
+0.205053056
+0.230638648
+0.27141147
+0.305274135
+0.352862271
+0.269441174
+0.157124197
+0.134065775
+0.12077754
+0.109867673
+0.111183444
+0.117363555
+0.13931709
+0.172183148
+0.201551992
+0.22679217
+0.265625997
+0.300359958
+0.346063317
+0.284571535
+0.163490872
+0.134129213
+0.120530564
+0.110464129
+0.111796932
+0.115195344
+0.133963329
+0.166872201
+0.196610991
+0.220276441
+0.257621269
+0.293070435
+0.338333382
+0.288730311
+0.161116881
+0.133950051
+0.121582643
+0.110270383
+0.111587613
+0.113569629
+0.133017558
+0.16473998
+0.195591523
+0.219034892
+0.256392846
+0.28972187
+0.333673317
+0.311534107
+0.165728412
+0.13589207
+0.119918385
+0.109411536
+0.110023616
+0.112493598
+0.132687615
+0.162148388
+0.194910126
+0.217374907
+0.252144444
+0.286621274
+0.330671314
+0.338671203
+0.173437213
+0.139133195
+0.123489455
+0.111627251
+0.1106883
+0.111559544
+0.128934572
+0.159883512
+0.19228843
+0.214981075
+0.252363457
+0.286998984
+0.330473614
+0.357728153
+0.181461687
+0.140837403
+0.124260702
+0.112460945
+0.110940332
+0.114408691
+0.129082074
+0.156499268
+0.192408432
+0.214174158
+0.250162019
+0.283072195
+0.326488388
+0.359257367
+0.185925096
+0.142385311
+0.126222253
+0.111668088
+0.107534317
+0.109227847
+0.123987269
+0.151967064
+0.186166346
+0.207296868
+0.24257109
+0.276344802
+0.319622611
+0.360498197
+0.238952629
+0.150577129
+0.129729416
+0.114118332
+0.109822115
+0.107889368
+0.117687214
+0.138907684
+0.173347172
+0.19619586
+0.226705064
+0.260763775
+0.302550033
+0.342092088
+0.306779533
+0.161444396
+0.135203129
+0.117969036
+0.1076651
+0.105083818
+0.112717252
+0.128738854
+0.16284897
+0.189572527
+0.217259147
+0.251403639
+0.290067264
+0.328285164
+0.374592276
+0.187091035
+0.14717919
+0.125944762
+0.114632708
+0.109129363
+0.113482457
+0.123117126
+0.155955325
+0.187841812
+0.215148542
+0.244616349
+0.285214804
+0.322442972
+0.370060285
+0.189687947
+0.143842655
+0.122211718
+0.110723259
+0.104885385
+0.108421818
+0.117601074
+0.147190495
+0.177613661
+0.202965039
+0.230986451
+0.270095492
+0.304830501
+0.352634998
+0.25583341
+0.15042787
+0.125091543
+0.115491612
+0.108476559
+0.110753417
+0.115693017
+0.140835701
+0.172312296
+0.200924329
+0.225460662
+0.264227257
+0.300301217
+0.346946765
+0.285510022
+0.157787611
+0.130405205
+0.119781271
+0.109311763
+0.110736962
+0.116239734
+0.136587192
+0.16681614
+0.199430489
+0.222406782
+0.259488963
+0.294851312
+0.340098904
+0.312022075
+0.160289002
+0.130251927
+0.117282853
+0.108147607
+0.107729641
+0.109261662
+0.128897041
+0.156692101
+0.188235624
+0.212499877
+0.246636299
+0.278805704
+0.323975275
+0.360319129
+0.188096669
+0.142993973
+0.126413779
+0.112251537
+0.10889552
+0.108768437
+0.119327946
+0.147114101
+0.181333178
+0.201412565
+0.234289829
+0.271016441
+0.310913448
+0.350018531
+0.195470786
+0.141718725
+0.125746911
+0.115674901
+0.112838098
+0.113665123
+0.130819323
+0.15465259
+0.193205075
+0.217021207
+0.252423297
+0.287796326
+0.333010795
+0.330720135
+0.170545446
+0.134927993
+0.11924722
+0.106276793
+0.106912882
+0.109468958
+0.126550867
+0.153899578
+0.186964861
+0.210466985
+0.246782248
+0.278466866
+0.320783596
+0.345898365
+0.182684635
+0.141463314
+0.125377231
+0.111867848
+0.109075316
+0.109552865
+0.122193139
+0.149366488
+0.183442755
+0.204090525
+0.239031942
+0.273536801
+0.315327963
+0.356037621
+0.243327643
+0.15054346
+0.131834583
+0.116722816
+0.111891184
+0.108882976
+0.119423161
+0.139525727
+0.176348746
+0.199383739
+0.229888158
+0.264495099
+0.303472635
+0.343654903
+0.231932936
+0.149841593
+0.130304647
+0.114897674
+0.111300773
+0.111872435
+0.126183428
+0.146035735
+0.18439541
+0.208577947
+0.241259435
+0.276116428
+0.31891451
+0.36173202
+0.206676036
+0.144321426
+0.126755613
+0.113578362
+0.111297649
+0.111351398
+0.122671475
+0.146225528
+0.182291939
+0.204090587
+0.237598423
+0.271925003
+0.313518095
+0.354834679
+0.204795635
+0.142842844
+0.127292069
+0.11550408
+0.11122635
+0.11231853
+0.123833917
+0.146487247
+0.183528808
+0.206080264
+0.236884735
+0.272385213
+0.314491583
+0.356693213
+0.289915404
+0.16316838
+0.137766008
+0.120571963
+0.114942055
+0.113148995
+0.118170261
+0.132460473
+0.169512607
+0.195740704
+0.224768834
+0.257666571
+0.296576818
+0.335827584
+0.327065824
+0.16395843
+0.136223208
+0.119169578
+0.111421664
+0.1069043
+0.113358787
+0.12809035
+0.164027857
+0.190681368
+0.217242796
+0.249124552
+0.287928343
+0.326839945
+0.376975166
+0.201463743
+0.150659099
+0.128049049
+0.116411787
+0.109826052
+0.114555811
+0.122396693
+0.153079187
+0.184441519
+0.210837792
+0.239920818
+0.278855859
+0.314991179
+0.363002614
+0.205545123
+0.148919791
+0.129250189
+0.117758551
+0.110235114
+0.11458774
+0.124102256
+0.153428978
+0.186337186
+0.212098569
+0.239868219
+0.279164298
+0.315617794
+0.365958485
+0.21842863
+0.14785454
+0.125393759
+0.11409962
+0.108358983
+0.113128221
+0.1203139
+0.147928446
+0.18031921
+0.206098353
+0.233616183
+0.273993766
+0.307713583
+0.355488824
+0.235850388
+0.154307675
+0.130640079
+0.118279332
+0.111364641
+0.113995768
+0.121136865
+0.148178916
+0.181729047
+0.207721158
+0.235247477
+0.275481521
+0.310190707
+0.35861563
+0.223530946
+0.149490627
+0.125495534
+0.115193418
+0.109752206
+0.112333438
+0.119403077
+0.147271111
+0.179599794
+0.206409347
+0.232896716
+0.270193123
+0.307398491
+0.354053532
+0.271268221
+0.154891374
+0.1294653
+0.119059956
+0.110051477
+0.111866151
+0.116163309
+0.139515439
+0.170913815
+0.200325434
+0.224712923
+0.262853231
+0.296529196
+0.342596795
+0.304092739
+0.158505205
+0.130275869
+0.118402982
+0.10870956
+0.109720856
+0.113639057
+0.134957504
+0.164937557
+0.196866972
+0.219930198
+0.256946349
+0.292234283
+0.337204441
+0.332680463
+0.171677148
+0.136632911
+0.122890558
+0.111668917
+0.109974553
+0.112548754
+0.126704542
+0.154946118
+0.190102803
+0.210157092
+0.246413664
+0.279920517
+0.322592099
+0.364983317
+0.204985202
+0.145550612
+0.127915577
+0.115059677
+0.11252235
+0.112494694
+0.125176794
+0.153965502
+0.190319419
+0.210127668
+0.246557626
+0.280942182
+0.323230433
+0.364330151
+0.194343507
+0.147506277
+0.131305972
+0.117570755
+0.112455529
+0.112547248
+0.125780282
+0.149885637
+0.187202985
+0.208244455
+0.241246678
+0.275378006
+0.317996515
+0.354248195
+0.18737835
+0.144667394
+0.128225111
+0.112936049
+0.109721383
+0.111776004
+0.126031324
+0.149958555
+0.186728929
+0.208417218
+0.243200157
+0.276218994
+0.318591048
+0.362202572
+0.275923737
+0.154867326
+0.135066941
+0.120664539
+0.111929391
+0.109227013
+0.119655536
+0.142099081
+0.1774041
+0.199823842
+0.231491283
+0.266034276
+0.306809311
+0.347151588
+0.269980447
+0.153718378
+0.132138317
+0.118464765
+0.113520267
+0.111875278
+0.121202142
+0.141104818
+0.178952373
+0.203533508
+0.235325323
+0.270480343
+0.312003862
+0.353288895
+0.292246968
+0.160934372
+0.136475789
+0.120579699
+0.11479526
+0.113922245
+0.12203594
+0.143367045
+0.180848144
+0.202464455
+0.23504736
+0.271569767
+0.310757574
+0.353346868
+0.274661571
+0.159650425
+0.13637324
+0.118875182
+0.112646891
+0.111925541
+0.121640164
+0.140025403
+0.178508476
+0.203733564
+0.234441533
+0.268417032
+0.311174139
+0.351720374
+0.303344504
+0.159579075
+0.13490195
+0.118779715
+0.112271218
+0.110634927
+0.117802066
+0.137792712
+0.174366579
+0.19921438
+0.228497984
+0.264155294
+0.303669611
+0.345369538
+0.321163764
+0.170581919
+0.139476035
+0.120662881
+0.111365185
+0.109255303
+0.11829946
+0.135568302
+0.169830257
+0.198387252
+0.228981578
+0.261079642
+0.302102959
+0.340404368
+0.286532545
+0.158533565
+0.131171302
+0.116226246
+0.111847995
+0.110835138
+0.117741029
+0.138094485
+0.173026437
+0.197782937
+0.229659648
+0.262477814
+0.302895302
+0.342234152
+0.291026529
+0.157389044
+0.135345703
+0.120293513
+0.114960475
+0.113726421
+0.123242347
+0.14304935
+0.180829096
+0.205392367
+0.237738921
+0.272427594
+0.313917993
+0.356030106
+0.256928324
+0.152981316
+0.131537501
+0.115019175
+0.111433054
+0.112959189
+0.124026459
+0.149201237
+0.184253189
+0.206536321
+0.241084996
+0.276638091
+0.319935457
+0.361750074
+0.222344134
+0.147321669
+0.128103568
+0.114503399
+0.111559409
+0.114620065
+0.126523215
+0.15091753
+0.186310001
+0.208230688
+0.240536618
+0.274825452
+0.316521786
+0.359887069
+0.207027417
+0.142356027
+0.127153576
+0.114173611
+0.111178059
+0.11229977
+0.127504824
+0.152025963
+0.188275044
+0.209153498
+0.24323103
+0.277785904
+0.321220354
+0.362281851
+0.205231337
+0.143313887
+0.126490093
+0.114914076
+0.111278007
+0.111585765
+0.123227562
+0.145376165
+0.181334311
+0.202934584
+0.236314414
+0.269570025
+0.311042613
+0.353055147
+0.278767309
+0.153691372
+0.131563707
+0.116876045
+0.110424004
+0.108317091
+0.11882822
+0.135804669
+0.172021303
+0.196607701
+0.224413298
+0.260086603
+0.299335665
+0.339763417
+0.285862423
+0.154885794
+0.131642146
+0.116814171
+0.110623847
+0.10923693
+0.116605215
+0.13423864
+0.169163824
+0.193818452
+0.224419134
+0.256866732
+0.296665427
+0.335611731
+0.336813598
+0.170501317
+0.141184793
+0.124298291
+0.11564965
+0.111329835
+0.117237087
+0.132572766
+0.16785847
+0.198033219
+0.226665269
+0.260619575
+0.299491505
+0.340974357
+0.348973314
+0.169003308
+0.13952241
+0.12145055
+0.11284993
+0.108224597
+0.113650498
+0.125169015
+0.160868727
+0.189984264
+0.216702578
+0.247755029
+0.286217066
+0.324031192
+0.297807876
+0.163718397
+0.13886752
+0.122016121
+0.114244193
+0.111673482
+0.118868746
+0.13249673
+0.169170915
+0.198227494
+0.226257205
+0.259812088
+0.298290272
+0.339472917
+0.325087024
+0.166012136
+0.14266208
+0.126604374
+0.117753286
+0.115519551
+0.123437364
+0.140544438
+0.179169705
+0.208054412
+0.239282278
+0.276238545
+0.315464487
+0.357619938
+0.271444724
+0.158039586
+0.135338381
+0.122179665
+0.116544546
+0.114578621
+0.123473146
+0.143094892
+0.182042866
+0.206209791
+0.238094946
+0.272680657
+0.313100651
+0.355157512
+0.250048775
+0.15047469
+0.132306788
+0.118106048
+0.112008015
+0.110790627
+0.121067799
+0.142529013
+0.179437469
+0.201430762
+0.233023837
+0.26705325
+0.310014218
+0.347730638
+0.277832503
+0.158316879
+0.136698219
+0.118558651
+0.111991142
+0.110761774
+0.118255007
+0.14051507
+0.174949637
+0.199387341
+0.231301924
+0.265901125
+0.305224984
+0.345104878
+0.297720919
+0.159620259
+0.135914216
+0.119546823
+0.110484174
+0.108082783
+0.11520581
+0.133520169
+0.166435579
+0.191870414
+0.218778103
+0.251608358
+0.290504718
+0.329235248
+0.364336789
+0.180283199
+0.142742611
+0.122526545
+0.115316384
+0.109431995
+0.113500354
+0.125423506
+0.159664012
+0.188940644
+0.215938385
+0.244295597
+0.285335225
+0.323541591
+0.371979974
+0.188148359
+0.144977754
+0.126808966
+0.118312251
+0.110312824
+0.112018439
+0.123194668
+0.153170618
+0.186855816
+0.211350084
+0.238736729
+0.27917928
+0.314375925
+0.364201279
+0.207182613
+0.154421446
+0.132753513
+0.121230306
+0.113348587
+0.116173308
+0.123659822
+0.155434877
+0.188646953
+0.215832402
+0.245473407
+0.284852372
+0.321114898
+0.353950518
+0.175664018
+0.141442313
+0.123457377
+0.116005551
+0.112050785
+0.117024607
+0.126431525
+0.162733165
+0.191176731
+0.218277962
+0.247091369
+0.286064867
+0.323152232
+0.31983215
+0.169288488
+0.141092524
+0.122147335
+0.114251553
+0.110810117
+0.116527528
+0.131168163
+0.166779964
+0.194620721
+0.223107048
+0.254369399
+0.294689034
+0.334699609
+0.301243316
+0.163098792
+0.138097858
+0.120767971
+0.113475882
+0.111780841
+0.12367066
+0.140432948
+0.179434989
+0.204104881
+0.235937072
+0.270588515
+0.311766845
+0.350993259
+0.268380197
+0.156699563
+0.132270086
+0.115600975
+0.109714502
+0.108086752
+0.115798421
+0.137089066
+0.171072545
+0.193394276
+0.223350021
+0.257009388
+0.295185705
+0.332851454
+0.285788632
+0.158021796
+0.133861587
+0.117610129
+0.111568033
+0.110078042
+0.118066898
+0.137540784
+0.172356028
+0.197773053
+0.227067708
+0.261463218
+0.300684893
+0.339209749
+0.272789917
+0.154441926
+0.130842338
+0.115169053
+0.109845285
+0.108178577
+0.117298935
+0.136704645
+0.171313016
+0.195017761
+0.22325909
+0.256483304
+0.296716745
+0.335785818
+0.306069081
+0.158094352
+0.129364276
+0.112202302
+0.105438856
+0.103257985
+0.109375133
+0.127238925
+0.158376851
+0.184281998
+0.210151833
+0.242798187
+0.277063541
+0.313575235
+0.288920862
+0.1518008
+0.126788721
+0.110297159
+0.102718823
+0.101961067
+0.10720119
+0.122880673
+0.153942298
+0.178611829
+0.203413493
+0.231056858
+0.266304655
+0.30453415
+0.277643489
+0.14557829
+0.122779998
+0.107551137
+0.102661481
+0.103349289
+0.110471223
+0.128042621
+0.158051336
+0.181240511
+0.205985875
+0.235709384
+0.272723731
+0.307148043
+0.207749094
+0.137304386
+0.118332684
+0.106432448
+0.104989175
+0.106431718
+0.116780975
+0.141333684
+0.172453538
+0.192392682
+0.224685915
+0.25647441
+0.297186027
+0.286806302
+0.152280022
+0.120577463
+0.107145673
+0.10083514
+0.104746783
+0.107956293
+0.128164446
+0.152640072
+0.182954254
+0.206772801
+0.240881023
+0.272372594
+0.31522602
+0.261163498
+0.145991886
+0.120073717
+0.109249932
+0.101652376
+0.104842564
+0.10850676
+0.1339879
+0.159514144
+0.187933392
+0.213539167
+0.249421127
+0.281014677
+0.324590704
+0.215684936
+0.137923658
+0.114686252
+0.102809453
+0.09858422
+0.104492203
+0.111964187
+0.141180096
+0.170046632
+0.192338679
+0.217319927
+0.256064213
+0.287737243
+0.319404803
+0.165144424
+0.129647931
+0.110819299
+0.102612894
+0.100863164
+0.106411411
+0.117314571
+0.149186349
+0.174044525
+0.200018997
+0.226017531
+0.261914909
+0.298221971
+0.30275585
+0.15894608
+0.124845097
+0.105630635
+0.098759689
+0.098983126
+0.107361249
+0.123234119
+0.152865807
+0.176607271
+0.203086011
+0.231934163
+0.26789154
+0.301704609
+0.270142777
+0.142677486
+0.119125864
+0.10581074
+0.100647959
+0.102033472
+0.109102074
+0.127680446
+0.157663435
+0.179941628
+0.208155357
+0.237032779
+0.273411978
+0.308694985
+0.230439279
+0.137355959
+0.120141901
+0.109009263
+0.108002655
+0.107321461
+0.116629996
+0.14337712
+0.173442764
+0.193371702
+0.225664937
+0.25927759
+0.297985367
+0.223117037
+0.137363564
+0.115223235
+0.104710697
+0.101983527
+0.108801869
+0.114635114
+0.143653108
+0.171849443
+0.196545694
+0.222620374
+0.260277534
+0.293764199
+0.268469567
+0.14530586
+0.123157666
+0.109488637
+0.106738445
+0.107512295
+0.116541197
+0.137738721
+0.170926794
+0.193925608
+0.224101044
+0.257163858
+0.296317937
+0.285502744
+0.154457783
+0.126729468
+0.114091994
+0.10540783
+0.108331406
+0.110473736
+0.128709611
+0.155092259
+0.187437317
+0.210505923
+0.243564936
+0.277521026
+0.320701068
+0.235374102
+0.142339579
+0.1188303
+0.110279833
+0.107445267
+0.112555131
+0.117739005
+0.146513147
+0.177194102
+0.204110601
+0.230572102
+0.270233365
+0.304714141
+0.310670093
+0.152565454
+0.125210469
+0.111726594
+0.107236467
+0.107082301
+0.112516746
+0.130863767
+0.162053885
+0.188798407
+0.215264284
+0.247004867
+0.283748025
+0.318984003
+0.185808739
+0.130969654
+0.115224231
+0.105760331
+0.10750605
+0.112137479
+0.131774128
+0.15962734
+0.191148081
+0.216687976
+0.251859945
+0.285743379
+0.327634994
+0.188645755
+0.139594237
+0.117609373
+0.111426808
+0.109215363
+0.113208255
+0.124856464
+0.157346575
+0.186994464
+0.215330018
+0.243812704
+0.285028283
+0.321599984
+0.242957451
+0.13950377
+0.122382314
+0.111719306
+0.109019428
+0.106447569
+0.115409076
+0.136835193
+0.170978263
+0.191959903
+0.221877114
+0.253691658
+0.295733115
+0.331922266
+0.191451887
+0.131706216
+0.115792669
+0.104972475
+0.105347577
+0.105953772
+0.120129465
+0.144285617
+0.177106768
+0.19790039
+0.229495195
+0.264833934
+0.30323776
+0.281193365
+0.150251519
+0.12211513
+0.11117525
+0.103242487
+0.106992412
+0.11328305
+0.136095044
+0.165163511
+0.194359112
+0.221229883
+0.257832262
+0.292357049
+0.336722817
+0.19150163
+0.13543682
+0.117327401
+0.109723594
+0.104385658
+0.110669786
+0.121864977
+0.152616402
+0.182503041
+0.207643407
+0.234069442
+0.274331746
+0.309254343
+0.278660835
+0.145835664
+0.123144189
+0.109763855
+0.104799719
+0.104325763
+0.111919415
+0.128884102
+0.159805006
+0.184554228
+0.21204031
+0.242897099
+0.28060369
+0.316867477
+0.235715216
+0.137627643
+0.118606927
+0.107161945
+0.106098202
+0.106586115
+0.114905335
+0.135830623
+0.168615786
+0.189607741
+0.219192871
+0.253582244
+0.293788664
+0.294598919
+0.158145852
+0.124077155
+0.111197234
+0.103426344
+0.105009199
+0.110169897
+0.132841267
+0.158619651
+0.187204528
+0.212931454
+0.247420201
+0.279414901
+0.320844595
+0.194249434
+0.135594793
+0.116584858
+0.108855634
+0.105439458
+0.111685461
+0.120115046
+0.14907117
+0.179121298
+0.204737183
+0.232762011
+0.272567185
+0.306257917
+0.27707445
+0.14132752
+0.117569541
+0.104316966
+0.100409854
+0.101726097
+0.110040369
+0.126910317
+0.157917784
+0.18022395
+0.206546028
+0.237128342
+0.274035043
+0.309363004
+0.245845008
+0.137494369
+0.118660213
+0.106335028
+0.103804887
+0.105112222
+0.11530065
+0.135522401
+0.168867042
+0.190238318
+0.218487521
+0.252658405
+0.292980191
+0.314648914
+0.172414365
+0.130606859
+0.115738773
+0.106709141
+0.1076495
+0.111540987
+0.129968427
+0.156264568
+0.189198586
+0.21412359
+0.249098117
+0.282878484
+0.325616923
+0.203545427
+0.13602464
+0.116254397
+0.109268866
+0.104219365
+0.108099185
+0.117005902
+0.146348953
+0.174028784
+0.199572536
+0.225048943
+0.262349341
+0.296643716
+0.296935174
+0.151702202
+0.127104384
+0.113165249
+0.108233405
+0.106119928
+0.111837341
+0.126048036
+0.158129195
+0.183997372
+0.211549392
+0.241892177
+0.277470242
+0.314022416
+0.215364214
+0.133893249
+0.118441364
+0.105202747
+0.104405616
+0.105528683
+0.117405486
+0.141756848
+0.174633263
+0.195953864
+0.227913409
+0.260457744
+0.301722962
+0.28109267
+0.150487213
+0.11841647
+0.107109923
+0.100671994
+0.101951257
+0.106746593
+0.130869207
+0.157781804
+0.183156547
+0.207279943
+0.243786909
+0.274264694
+0.31652574
+0.21401256
+0.132033993
+0.111602189
+0.104537024
+0.100140019
+0.104723637
+0.111208233
+0.137962551
+0.165466395
+0.188290476
+0.213568396
+0.251527958
+0.284479635
+0.328624889
+0.191406708
+0.131424363
+0.110433083
+0.102965055
+0.10050908
+0.105910819
+0.117871997
+0.149486857
+0.176364091
+0.200775141
+0.22775873
+0.264349134
+0.300193501
+0.30445207
+0.155415417
+0.125744294
+0.110297668
+0.104490724
+0.102553548
+0.110348606
+0.128515319
+0.159333311
+0.185239978
+0.213104601
+0.244557902
+0.283166731
+0.319287972
+0.252326293
+0.139031975
+0.119326312
+0.107955913
+0.104873066
+0.104592027
+0.113253798
+0.135136686
+0.166250041
+0.189106101
+0.217924261
+0.250950678
+0.290497159
+0.328515108
+0.191430099
+0.129863751
+0.113609786
+0.102419228
+0.101870169
+0.104316352
+0.120580578
+0.141334463
+0.1760879
+0.199121773
+0.230480387
+0.26367326
+0.30531275
+0.309751683
+0.159090607
+0.124558731
+0.110666628
+0.104827705
+0.104978745
+0.107205347
+0.127364028
+0.151976224
+0.184182228
+0.205845693
+0.23992804
+0.273720963
+0.315390453
+0.252946713
+0.143856846
+0.118139865
+0.109794134
+0.103350422
+0.106166708
+0.110064132
+0.134507164
+0.161561897
+0.188263664
+0.213003517
+0.24855294
+0.279378796
+0.32189573
+0.200590675
+0.134254874
+0.114522544
+0.107080453
+0.102040848
+0.10899263
+0.117346173
+0.142473731
+0.172979695
+0.199124486
+0.223850954
+0.261578019
+0.295753129
+0.320658658
+0.161888877
+0.128212047
+0.111592146
+0.105492964
+0.102632773
+0.107773575
+0.121998542
+0.152539871
+0.180323455
+0.208628599
+0.236905201
+0.274410707
+0.310794032
+0.268431107
+0.143236438
+0.122241251
+0.108738362
+0.105625308
+0.105074947
+0.11284214
+0.132290357
+0.163598712
+0.188651428
+0.216286107
+0.248743362
+0.286480116
+0.323387657
+0.208130323
+0.133134572
+0.11721149
+0.105089322
+0.103366885
+0.103965163
+0.113649741
+0.136378615
+0.168892901
+0.189555434
+0.21903604
+0.251580118
+0.290725928
+0.316405514
+0.164969175
+0.127106119
+0.114855359
+0.104285266
+0.104210943
+0.106418899
+0.122025317
+0.148414327
+0.179802369
+0.201425313
+0.233768455
+0.265066447
+0.308115202
+0.225621316
+0.139358808
+0.117159253
+0.107891495
+0.10293043
+0.106540826
+0.110402053
+0.134241964
+0.159932176
+0.186858215
+0.211379268
+0.248193424
+0.279523499
+0.318791288
+0.1749649
+0.133699156
+0.113851929
+0.105610155
+0.103180274
+0.107876809
+0.117587845
+0.146739443
+0.174103083
+0.200176627
+0.227259227
+0.263428337
+0.299551665
+0.293129984
+0.153217531
+0.1284345
+0.112510377
+0.106937388
+0.104230634
+0.110957209
+0.12673175
+0.159339735
+0.18571687
+0.213922277
+0.245419956
+0.284674827
+0.322878612
+0.210270216
+0.13150891
+0.11551562
+0.103538555
+0.102576113
+0.102603665
+0.111451633
+0.134937484
+0.165812927
+0.185827393
+0.215609508
+0.248869156
+0.287254294
+0.315793658
+0.173246635
+0.128425753
+0.115022916
+0.104725423
+0.104850528
+0.107860458
+0.128218567
+0.152585663
+0.184546673
+0.210061626
+0.244094343
+0.275803115
+0.319455254
+0.236117411
+0.138886317
+0.116211711
+0.107312285
+0.102209137
+0.105999636
+0.113325166
+0.142392131
+0.168482915
+0.194417137
+0.21935048
+0.257612286
+0.289869961
+0.315232938
+0.160719888
+0.128816169
+0.111498459
+0.104266106
+0.102260336
+0.108888683
+0.122854747
+0.153658733
+0.181015186
+0.207372427
+0.235719813
+0.27401313
+0.310745258
+0.31320639
+0.17258982
+0.145849405
+0.127679563
+0.122857248
+0.12168439
+0.129410491
+0.146156694
+0.187321088
+0.218683978
+0.252430603
+0.289725749
+0.334849391
+0.38064631
+0.275432084
+0.167518966
+0.146971899
+0.133537655
+0.130318664
+0.126684362
+0.133671248
+0.160481456
+0.200835438
+0.230162454
+0.267668173
+0.30571545
+0.355657033
+0.366727803
+0.19431402
+0.159276256
+0.144595821
+0.135190876
+0.133810155
+0.13589332
+0.155014927
+0.193041164
+0.235389562
+0.26074509
+0.304885459
+0.344786423
+0.407124393
+0.336071997
+0.21312063
+0.184384965
+0.165564763
+0.146724925
+0.148963922
+0.15360827
+0.18053051
+0.226684771
+0.267843021
+0.299333567
+0.349446036
+0.404758735
+0.446473283
+0.225193792
+0.188603016
+0.159177875
+0.144728376
+0.137893677
+0.141741882
+0.155231388
+0.196486199
+0.234562072
+0.267787973
+0.302663655
+0.352360606
+0.40007059
+0.361529616
+0.201469714
+0.177343188
+0.152676456
+0.141372303
+0.134424479
+0.138130395
+0.160258652
+0.204015638
+0.233138177
+0.268317608
+0.305212498
+0.350468539
+0.398564353
+0.357342405
+0.198111039
+0.173268838
+0.151632245
+0.140808923
+0.132582148
+0.138007377
+0.149529758
+0.195735584
+0.225539474
+0.255774195
+0.289610822
+0.335665295
+0.379268115
+0.38076717
+0.203944236
+0.175906012
+0.151450686
+0.138592427
+0.130511588
+0.136315045
+0.15170933
+0.192252637
+0.225763797
+0.25760101
+0.293516271
+0.334862022
+0.380281447
+0.430123816
+0.220409664
+0.178919018
+0.154726866
+0.140772885
+0.133090689
+0.13565755
+0.145480253
+0.184695235
+0.21969394
+0.250805323
+0.28316722
+0.327488734
+0.369349744
+0.437016646
+0.233888339
+0.175454614
+0.149055651
+0.13382402
+0.126074481
+0.131020443
+0.137986131
+0.172683066
+0.206664018
+0.235929734
+0.267270439
+0.308507597
+0.349467154
+0.412619395
+0.317277497
+0.182233638
+0.156952378
+0.142506159
+0.129834618
+0.12847848
+0.130845341
+0.157511906
+0.192368008
+0.223820483
+0.252819119
+0.291894936
+0.328980453
+0.381450203
+0.392483318
+0.210455353
+0.170513187
+0.147796234
+0.129519777
+0.122068414
+0.12029832
+0.138337019
+0.170831207
+0.20654444
+0.232380489
+0.268182315
+0.302542015
+0.349614818
+0.397082723
+0.334965111
+0.190962447
+0.164241715
+0.144407453
+0.135298027
+0.128488847
+0.135666254
+0.158157531
+0.200888068
+0.227842601
+0.260891267
+0.298228553
+0.341137057
+0.388309496
+0.343723346
+0.180955943
+0.157510036
+0.138319365
+0.130264932
+0.126382767
+0.135428652
+0.151170229
+0.194535814
+0.222349823
+0.254228651
+0.289817458
+0.332740755
+0.376203944
+0.343016218
+0.190767973
+0.161119132
+0.139151341
+0.130194934
+0.126886307
+0.133526634
+0.148232123
+0.191401668
+0.221175664
+0.253381679
+0.287733567
+0.332033678
+0.37646202
+0.383374845
+0.194225195
+0.168383624
+0.147559367
+0.134031788
+0.124873508
+0.131095868
+0.146160521
+0.18825825
+0.218645213
+0.251004039
+0.286441077
+0.328819898
+0.372107518
+0.401435371
+0.201649634
+0.16554286
+0.142297628
+0.130370508
+0.124192627
+0.130724673
+0.142026536
+0.180569285
+0.212216815
+0.24432507
+0.276436241
+0.319251519
+0.36194086
+0.399118357
+0.203427491
+0.166693376
+0.144032724
+0.132849246
+0.125278091
+0.130364521
+0.13821807
+0.17953294
+0.211240676
+0.239436662
+0.271213097
+0.314584049
+0.353354454
+0.407912426
+0.214835605
+0.171819183
+0.147616038
+0.132843362
+0.12434841
+0.127887192
+0.135957095
+0.175798066
+0.208422049
+0.237064751
+0.269420401
+0.314465043
+0.353479301
+0.408961123
+0.215270136
+0.167359887
+0.142950597
+0.132504355
+0.121977226
+0.124459765
+0.135392516
+0.174767918
+0.207182682
+0.235466741
+0.268888011
+0.309764186
+0.349804378
+0.40440334
+0.214256185
+0.167365826
+0.143199504
+0.131903526
+0.1255045
+0.131211186
+0.137206725
+0.173914071
+0.208619969
+0.239660835
+0.27100545
+0.312682246
+0.354528521
+0.392891534
+0.211175788
+0.171956687
+0.148167707
+0.135363716
+0.125214658
+0.126784181
+0.135406268
+0.175962758
+0.207517581
+0.236293513
+0.268041406
+0.309268987
+0.351234637
+0.414296365
+0.224904984
+0.167851191
+0.14024843
+0.124787423
+0.115634245
+0.114934822
+0.121956241
+0.152509403
+0.184568181
+0.211985162
+0.236121224
+0.27595574
+0.313432978
+0.361339531
+0.33947804
+0.18229882
+0.149787909
+0.132572849
+0.121124476
+0.120506667
+0.122022856
+0.143126957
+0.173493192
+0.208329768
+0.235875915
+0.273397736
+0.310239352
+0.35775143
+0.364970192
+0.193828496
+0.156781412
+0.13762126
+0.122818999
+0.119959223
+0.121382705
+0.134894296
+0.168532596
+0.20606671
+0.228475856
+0.265677157
+0.300023058
+0.345770147
+0.364325928
+0.18804728
+0.148951145
+0.131305515
+0.118226473
+0.116204037
+0.117122366
+0.133514096
+0.16228029
+0.196728847
+0.219586949
+0.255819871
+0.289252445
+0.334110214
+0.375044831
+0.203841985
+0.154362991
+0.136272519
+0.121342759
+0.116902993
+0.116906743
+0.126405856
+0.153545913
+0.189931699
+0.211161112
+0.24535415
+0.280863484
+0.32237221
+0.363344586
+0.219442265
+0.157023915
+0.138090948
+0.12103922
+0.113971968
+0.111956146
+0.123856497
+0.145992727
+0.183240593
+0.20487193
+0.236912533
+0.273902067
+0.314920536
+0.355546716
+0.264503787
+0.161637797
+0.139855054
+0.122913273
+0.115653418
+0.112640727
+0.120600525
+0.140504894
+0.17716016
+0.201317473
+0.231855636
+0.264768734
+0.305183771
+0.345332662
+0.310953373
+0.168001096
+0.143311182
+0.125014461
+0.11646305
+0.112122345
+0.12059558
+0.136056639
+0.174141635
+0.201432005
+0.230470021
+0.264776653
+0.304995596
+0.344422149
+0.338891659
+0.17636678
+0.14711538
+0.127735905
+0.118575852
+0.116626644
+0.119095953
+0.132444317
+0.169612235
+0.199108218
+0.226427337
+0.25759206
+0.297484391
+0.336336051
+0.320411712
+0.17141358
+0.143362747
+0.125128681
+0.116728884
+0.113216872
+0.118715124
+0.131336199
+0.168695836
+0.197370052
+0.224939378
+0.255927176
+0.294900033
+0.333243414
+0.335574913
+0.171596186
+0.146008984
+0.125790033
+0.115959462
+0.112456409
+0.119654702
+0.137812935
+0.17023286
+0.199209002
+0.229342637
+0.264060622
+0.301808695
+0.343351851
+0.323764824
+0.173068366
+0.142809523
+0.125691388
+0.118600959
+0.114662075
+0.120371105
+0.137068617
+0.174392994
+0.202178987
+0.232383821
+0.265249629
+0.306075758
+0.346169963
+0.287896535
+0.162604102
+0.140697036
+0.124404835
+0.116701127
+0.11345302
+0.124052388
+0.14052261
+0.179966194
+0.206101572
+0.237897126
+0.272465633
+0.314415141
+0.357353603
+0.270889496
+0.159642193
+0.138422206
+0.122239951
+0.116110193
+0.11490994
+0.124472596
+0.14622284
+0.186149755
+0.208332133
+0.241048099
+0.276320875
+0.317972832
+0.3601951
+0.265988536
+0.156184713
+0.135109413
+0.119724185
+0.114609943
+0.111209388
+0.120658242
+0.140531571
+0.176613039
+0.199674579
+0.230060558
+0.263380062
+0.304338483
+0.343683007
+0.298258933
+0.169181154
+0.143650513
+0.127398987
+0.118136434
+0.114924264
+0.120598712
+0.138264814
+0.174717061
+0.204176536
+0.23421111
+0.266706244
+0.307579613
+0.348587566
+0.302286726
+0.165984923
+0.141655369
+0.123610832
+0.115619053
+0.111127984
+0.118217581
+0.131185687
+0.169593705
+0.196545589
+0.225191578
+0.256272085
+0.294486147
+0.335570765
+0.34793325
+0.181239632
+0.146653416
+0.12516921
+0.113532295
+0.109087371
+0.113135318
+0.123328387
+0.159008036
+0.187753034
+0.214654502
+0.243408564
+0.281691531
+0.317971958
+0.345524985
+0.182983634
+0.146990029
+0.126571495
+0.118501435
+0.113619119
+0.118657372
+0.129133981
+0.166053467
+0.196262052
+0.22357633
+0.256451723
+0.296679264
+0.335999101
+0.371721407
+0.18793413
+0.147766902
+0.130050019
+0.11884456
+0.112539594
+0.116562228
+0.126098947
+0.160564072
+0.191222863
+0.219416771
+0.247014433
+0.288893059
+0.326705718
+0.380192041
+0.220519058
+0.154603897
+0.131906104
+0.120314031
+0.112604282
+0.113857764
+0.118343729
+0.150992718
+0.180527037
+0.20589393
+0.231892226
+0.272838565
+0.306007291
+0.352663965
+0.268791714
+0.162128336
+0.135267701
+0.122026471
+0.110644971
+0.109926485
+0.113791047
+0.137234983
+0.167830181
+0.196821117
+0.223239567
+0.262041856
+0.293563194
+0.33889649
+0.355953846
+0.18586951
+0.147273626
+0.131255641
+0.116931396
+0.113549852
+0.11747582
+0.12967341
+0.16149131
+0.195187742
+0.217334965
+0.25285571
+0.287812031
+0.331970437
+0.335712032
+0.17846825
+0.1412459
+0.123629694
+0.1115758
+0.111550697
+0.113858288
+0.127858629
+0.15779805
+0.192436508
+0.215205083
+0.250900878
+0.285635482
+0.328011711
+0.369821589
+0.209124387
+0.153215264
+0.133099487
+0.118426598
+0.114824013
+0.114750211
+0.12615067
+0.154331247
+0.190844799
+0.210349277
+0.246403926
+0.281601809
+0.3241096
+0.368152278
+0.239950368
+0.159361741
+0.136767281
+0.12185809
+0.118638837
+0.116142913
+0.125153489
+0.152050948
+0.189747307
+0.210550215
+0.244536334
+0.279943174
+0.323428303
+0.367892907
+0.250521458
+0.16048356
+0.138740865
+0.120038726
+0.114138185
+0.113487356
+0.121627572
+0.1450763
+0.180606993
+0.20394817
+0.235479562
+0.269841095
+0.310753739
+0.352596899
+0.269713701
+0.162346624
+0.13902024
+0.123673968
+0.118026394
+0.115950572
+0.124756098
+0.146027806
+0.183969008
+0.208711843
+0.23968428
+0.274088522
+0.317829589
+0.360887638
+0.327080268
+0.181602251
+0.153157717
+0.132728034
+0.120096957
+0.113687825
+0.121097421
+0.143610008
+0.180266373
+0.208009297
+0.237581169
+0.27360811
+0.313196596
+0.356358968
+0.284285293
+0.163145581
+0.140837732
+0.12515016
+0.117607649
+0.110475396
+0.120770184
+0.146451139
+0.181417254
+0.203258178
+0.238522467
+0.272532753
+0.313654251
+0.355585016
+0.261042295
+0.161002989
+0.140306798
+0.123171474
+0.117983116
+0.115822763
+0.126313697
+0.152478139
+0.18881107
+0.211493031
+0.247004143
+0.282122132
+0.325714606
+0.368542711
+0.230836731
+0.161030074
+0.138873786
+0.122278824
+0.120361646
+0.121212007
+0.130966798
+0.157020565
+0.196543321
+0.218814452
+0.254333688
+0.292540046
+0.334602582
+0.3778586
+0.21621004
+0.162447307
+0.142351789
+0.124451885
+0.119425037
+0.120306283
+0.133652201
+0.162033612
+0.200376323
+0.222817088
+0.260031889
+0.296770756
+0.34223645
+0.376752984
+0.199376851
+0.152390227
+0.135981981
+0.121312945
+0.118211972
+0.117413331
+0.12753588
+0.158542382
+0.193675423
+0.21411172
+0.251176314
+0.286031961
+0.327854081
+0.373231079
+0.216869154
+0.155788282
+0.13769614
+0.120920865
+0.116380004
+0.114746419
+0.125154384
+0.149609722
+0.187224938
+0.209601433
+0.242107562
+0.277328208
+0.320719018
+0.362245151
+0.268455652
+0.161749398
+0.141721276
+0.126052401
+0.120926126
+0.116844013
+0.126279535
+0.147575412
+0.185261773
+0.20847691
+0.241304912
+0.276180352
+0.318014034
+0.359324544
+0.2461427
+0.159135402
+0.138103795
+0.122363567
+0.116987919
+0.117418125
+0.129582539
+0.150127691
+0.189785552
+0.213038397
+0.245562339
+0.281429024
+0.324156713
+0.367811533
+0.248959093
+0.159658734
+0.140831074
+0.125454906
+0.119011919
+0.118057549
+0.128311454
+0.149959307
+0.187976136
+0.213088659
+0.24697077
+0.281706576
+0.323914685
+0.36703404
+0.254292139
+0.1624507
+0.142753097
+0.12682318
+0.120333268
+0.117551928
+0.127145471
+0.152057683
+0.189398735
+0.21280512
+0.246443692
+0.283387506
+0.323693387
+0.367235604
+0.219823209
+0.162032578
+0.142110236
+0.125629594
+0.12242758
+0.120411809
+0.131965551
+0.160022433
+0.198273012
+0.220440342
+0.25712895
+0.293828912
+0.337242797
+0.377540292
+0.206124325
+0.155455322
+0.138807234
+0.122701277
+0.120374623
+0.117533805
+0.127344431
+0.155356157
+0.192069713
+0.213634234
+0.249823886
+0.284157611
+0.326683271
+0.369898148
+0.247915981
+0.16374929
+0.144343559
+0.126054802
+0.120298375
+0.12059655
+0.128125833
+0.149147857
+0.187949632
+0.214084598
+0.246182866
+0.280692527
+0.323572926
+0.366407388
+0.356208014
+0.195070324
+0.165541261
+0.144167468
+0.133903928
+0.12850354
+0.136266521
+0.15792625
+0.200513994
+0.231789819
+0.266972915
+0.305507347
+0.352955378
+0.402317983
+0.361806269
+0.21121524
+0.184197467
+0.159996552
+0.147385317
+0.141465869
+0.151803575
+0.170946808
+0.223163981
+0.254344546
+0.292140857
+0.33184919
+0.386428018
+0.438191287
+0.245469073
+0.194431269
+0.17300659
+0.15000718
+0.139890618
+0.138373959
+0.15067577
+0.18171993
+0.225370585
+0.252561172
+0.293696164
+0.332833511
+0.38562141
+0.392000179
+0.211794043
+0.17281779
+0.154528667
+0.139839317
+0.133291226
+0.134827937
+0.151983681
+0.187305475
+0.227678128
+0.249941969
+0.292337892
+0.32979379
+0.380239618
+0.401255967
+0.213300704
+0.173056124
+0.153572579
+0.136247774
+0.128228286
+0.134040912
+0.152130869
+0.185340486
+0.226688915
+0.250065825
+0.291095245
+0.330028583
+0.381656958
+0.375565584
+0.199963587
+0.163980183
+0.148031881
+0.132232745
+0.126492931
+0.129290937
+0.147149125
+0.182397014
+0.21844693
+0.242863364
+0.282095763
+0.320138324
+0.368054115
+0.38587095
+0.210836762
+0.169702706
+0.151740613
+0.133943623
+0.127474854
+0.126246683
+0.144429922
+0.173941173
+0.213474561
+0.237082979
+0.276765585
+0.311929308
+0.359752287
+0.400772646
+0.221113011
+0.171552073
+0.150678432
+0.133934509
+0.126049029
+0.12606981
+0.137765582
+0.168761098
+0.208443495
+0.230171819
+0.26848464
+0.304513463
+0.349561353
+0.396526213
+0.28763501
+0.187689386
+0.165897104
+0.143308368
+0.132509778
+0.128670579
+0.135650804
+0.149671876
+0.194831381
+0.222658683
+0.256007573
+0.290091717
+0.334467007
+0.376255852
+0.319401201
+0.18292212
+0.162391915
+0.145662158
+0.135431742
+0.129449431
+0.1385873
+0.160455675
+0.199920887
+0.229338182
+0.264887736
+0.301369786
+0.347954492
+0.395117684
+0.321349891
+0.189375161
+0.165012527
+0.143297693
+0.132854465
+0.129514119
+0.136083407
+0.156695644
+0.19868704
+0.22588992
+0.261346975
+0.294771021
+0.34076271
+0.38447467
+0.28252572
+0.176328512
+0.154017482
+0.137750639
+0.129896878
+0.124483885
+0.132949622
+0.155616327
+0.195510861
+0.22174135
+0.25690997
+0.292520774
+0.333900299
+0.37922845
+0.324748941
+0.185995858
+0.158843552
+0.138959071
+0.129028498
+0.123314517
+0.131884577
+0.151651037
+0.190845678
+0.219082094
+0.249268187
+0.284770035
+0.327279607
+0.369403139
+0.323241399
+0.186237681
+0.159241728
+0.139970421
+0.129857193
+0.122370512
+0.132126972
+0.15140531
+0.193009991
+0.220119746
+0.252322445
+0.289495742
+0.332386354
+0.376168368
+0.325751389
+0.183523322
+0.156960022
+0.138523242
+0.129873391
+0.123606236
+0.131639215
+0.153816497
+0.191781353
+0.219479907
+0.252697444
+0.286788049
+0.331260633
+0.374009579
+0.352423701
+0.184993941
+0.156764608
+0.136571535
+0.126823981
+0.120008495
+0.124805762
+0.141015158
+0.179059806
+0.207263409
+0.23798747
+0.270420584
+0.309794705
+0.34968054
+0.339739967
+0.178822411
+0.15436035
+0.136312631
+0.12774632
+0.12233812
+0.127212365
+0.141334011
+0.180636205
+0.209311474
+0.239767619
+0.273066457
+0.312989013
+0.351877355
+0.355603533
+0.19369244
+0.161155212
+0.13952199
+0.130609067
+0.122337235
+0.127651478
+0.138301684
+0.176850913
+0.210501625
+0.238652366
+0.270960794
+0.315362128
+0.353744431
+0.354884997
+0.185829201
+0.160383707
+0.143352648
+0.133341658
+0.121396876
+0.126453881
+0.136581329
+0.174938476
+0.207479819
+0.23596108
+0.267681958
+0.309282474
+0.347250508
+0.371385749
+0.190779853
+0.159263713
+0.138756319
+0.126911588
+0.119897822
+0.126087322
+0.135301962
+0.174415876
+0.206602169
+0.234256455
+0.264929162
+0.308570969
+0.347086345
+0.402812309
+0.217001283
+0.170139128
+0.144658477
+0.130562925
+0.121165733
+0.122626663
+0.127498357
+0.158468406
+0.192762553
+0.219830748
+0.249890386
+0.290830385
+0.32575432
+0.378272281
+0.310788929
+0.175671965
+0.148529292
+0.135472796
+0.121366306
+0.122118385
+0.124234364
+0.144801915
+0.178958146
+0.212058342
+0.240036689
+0.277610142
+0.312218767
+0.362883404
+0.355555369
+0.191785061
+0.158032265
+0.142182137
+0.125746492
+0.119437097
+0.121728804
+0.134220824
+0.163992547
+0.201590167
+0.224406145
+0.260222628
+0.295723801
+0.34007894
+0.385568499
+0.235906712
+0.162882762
+0.144096035
+0.129387829
+0.124073064
+0.122709009
+0.134745614
+0.15445619
+0.193448231
+0.218987528
+0.254558284
+0.288994723
+0.33099477
+0.376129592
+0.275981926
+0.171222929
+0.148473514
+0.129726161
+0.122546823
+0.117816275
+0.125521183
+0.143467602
+0.180165904
+0.206962799
+0.237301499
+0.272408508
+0.313090748
+0.352865285
+0.292563145
+0.173854843
+0.150465744
+0.130758657
+0.120665896
+0.115249569
+0.122460522
+0.13738404
+0.176129467
+0.204100627
+0.231238563
+0.263861678
+0.30352231
+0.341186284
+0.327522396
+0.182711987
+0.15133199
+0.13065194
+0.122225108
+0.117866848
+0.122092817
+0.133778434
+0.172639435
+0.201723141
+0.22951951
+0.262638301
+0.301188209
+0.339274786
+0.30833786
+0.173994741
+0.148217008
+0.130506889
+0.12223339
+0.118371846
+0.123349998
+0.134757857
+0.174926612
+0.204025266
+0.23241809
+0.264518084
+0.305281419
+0.344056639
+0.329718431
+0.183263966
+0.156607435
+0.136645505
+0.124760565
+0.119090073
+0.124766294
+0.135167231
+0.175598432
+0.207186084
+0.237698482
+0.269467592
+0.311583837
+0.351393843
+0.360192862
+0.18951956
+0.158395343
+0.136913421
+0.126517015
+0.119070334
+0.124058798
+0.137381647
+0.176689
+0.20888264
+0.237133695
+0.269455875
+0.312002482
+0.351570929
+0.337414021
+0.176269629
+0.153164172
+0.135877542
+0.12851112
+0.121029752
+0.127134409
+0.139747158
+0.179724663
+0.209060505
+0.237755516
+0.272060187
+0.310686918
+0.354320291
+0.335265753
+0.175999839
+0.149758358
+0.13190449
+0.122821671
+0.116642328
+0.123704635
+0.137293889
+0.17627213
+0.205731461
+0.235080844
+0.267952813
+0.307015689
+0.348201315
+0.387972625
+0.205435369
+0.163702611
+0.137590035
+0.126759985
+0.122951515
+0.128063989
+0.140912934
+0.183444908
+0.213132466
+0.244303975
+0.276720531
+0.316952881
+0.357806112
+0.298173132
+0.174315683
+0.151920693
+0.131418192
+0.122336675
+0.118315862
+0.126740975
+0.1455601
+0.184987713
+0.210767948
+0.242788359
+0.276590637
+0.318050273
+0.360020426
+0.329631204
+0.175375783
+0.14712327
+0.127535816
+0.11674259
+0.1111272
+0.116609673
+0.134532447
+0.169134513
+0.194561573
+0.223448875
+0.253421172
+0.293016182
+0.330717815
+0.382375472
+0.212032423
+0.157927018
+0.136182232
+0.125397338
+0.117495711
+0.119460545
+0.125258433
+0.158657848
+0.189069987
+0.216536672
+0.246777405
+0.285221223
+0.321884112
+0.373612758
+0.23750839
+0.161233826
+0.138553679
+0.127327173
+0.11816852
+0.119971741
+0.126488687
+0.150618149
+0.183542099
+0.212703672
+0.242452532
+0.281058277
+0.315218313
+0.367991486
+0.316053779
+0.17838322
+0.148731754
+0.132894907
+0.121262308
+0.122712978
+0.125218747
+0.1477603
+0.179835088
+0.213822782
+0.240509107
+0.279375422
+0.314389049
+0.365226658
+0.310719537
+0.17312033
+0.144125424
+0.131242571
+0.119764556
+0.118376386
+0.122793291
+0.140506849
+0.173890378
+0.206529278
+0.23079124
+0.269324537
+0.305099774
+0.350762619
+0.345974727
+0.181657476
+0.149721022
+0.13558479
+0.121640485
+0.121358299
+0.124358024
+0.134438546
+0.162781841
+0.200016083
+0.222394668
+0.25989495
+0.296455132
+0.33905445
+0.378779512
+0.206261208
+0.158413427
+0.138277746
+0.121930172
+0.117297852
+0.116785771
+0.133374906
+0.157774784
+0.194999338
+0.216893447
+0.253115038
+0.287856687
+0.333286772
+0.374906669
+0.246203458
+0.158842123
+0.140505653
+0.124436358
+0.119666173
+0.116669261
+0.125679164
+0.143459648
+0.181097638
+0.20697954
+0.238119229
+0.272937648
+0.313967131
+0.35494151
+0.330740538
+0.170785763
+0.146844008
+0.12780504
+0.118232379
+0.113320008
+0.120013099
+0.134384642
+0.17167331
+0.199091195
+0.227362981
+0.26148552
+0.300404492
+0.339555131
+0.359406907
+0.176049227
+0.14723635
+0.128469881
+0.119000293
+0.111127936
+0.116806189
+0.127440563
+0.161365707
+0.1919992
+0.220484423
+0.249113395
+0.286947947
+0.325835566
+0.374931936
+0.200955614
+0.156143025
+0.134860631
+0.12338772
+0.117593998
+0.120084247
+0.125054221
+0.153828922
+0.187140944
+0.213130502
+0.24277348
+0.283503642
+0.317942534
+0.367909161
+0.271880472
+0.163457885
+0.139026705
+0.129793366
+0.123155534
+0.122479287
+0.126083592
+0.147736453
+0.182199199
+0.215108359
+0.240709221
+0.278860177
+0.316216242
+0.364427305
+0.277258624
+0.171509305
+0.141329507
+0.127103432
+0.118650505
+0.121032629
+0.123159389
+0.148398587
+0.182113106
+0.214877736
+0.242366193
+0.281859644
+0.317527226
+0.368104268
+0.287478471
+0.175476161
+0.144960427
+0.131858305
+0.120918307
+0.119422377
+0.125491357
+0.149666758
+0.182982426
+0.215900388
+0.243679991
+0.282165321
+0.318276756
+0.370999725
+0.280427101
+0.170048064
+0.142372004
+0.13020149
+0.124117875
+0.125918231
+0.129578369
+0.159394159
+0.194026643
+0.225209666
+0.255188945
+0.295522027
+0.333478141
+0.375098508
+0.196543715
+0.161976907
+0.139794153
+0.128159782
+0.118836652
+0.121307264
+0.129146549
+0.16507559
+0.198955787
+0.225069981
+0.254575096
+0.29798186
+0.334827408
+0.389335367
+0.215419509
+0.164354345
+0.141052324
+0.126758957
+0.117013589
+0.120618519
+0.126741718
+0.162967841
+0.19370446
+0.221910884
+0.252056359
+0.291715278
+0.329587487
+0.383598575
+0.234154208
+0.164025336
+0.140284724
+0.12924806
+0.119837586
+0.119582586
+0.121948304
+0.152602685
+0.183361387
+0.21281869
+0.239278612
+0.278287012
+0.313786109
+0.360249682
+0.251177928
+0.164912103
+0.140869202
+0.127696506
+0.115177714
+0.114981412
+0.121325079
+0.140342017
+0.175148355
+0.203855975
+0.22978517
+0.266522281
+0.300992371
+0.346130899
+0.323359137
+0.173447791
+0.14343971
+0.127454841
+0.115141777
+0.112610852
+0.113429806
+0.13067118
+0.162271649
+0.194141179
+0.216486226
+0.252600996
+0.284966566
+0.32836677
+0.372020982
+0.228390908
+0.160814
+0.140947015
+0.122936374
+0.116003336
+0.113104704
+0.122032525
+0.143713512
+0.180429529
+0.20179656
+0.232262087
+0.269340915
+0.309490354
+0.348079226
+0.320889048
+0.17712465
+0.147207818
+0.129108429
+0.118826344
+0.112811321
+0.117665776
+0.128435255
+0.168106518
+0.196215287
+0.224014733
+0.255047498
+0.295163655
+0.332894459
+0.371194428
+0.190578335
+0.151784046
+0.131532428
+0.120694668
+0.11277028
+0.116883332
+0.122793043
+0.156231577
+0.186719136
+0.21337687
+0.241961313
+0.281811482
+0.318345054
+0.365739404
+0.260609347
+0.160851034
+0.137450629
+0.124539389
+0.11285278
+0.112266481
+0.117115832
+0.141141808
+0.172670352
+0.202076614
+0.228442266
+0.263743655
+0.297209741
+0.344496073
+0.315786214
+0.177073612
+0.146315116
+0.131093941
+0.118783846
+0.117991505
+0.119814883
+0.139827909
+0.171261921
+0.2049441
+0.229082889
+0.268215875
+0.301237744
+0.349783548
+0.336056012
+0.169363702
+0.134925069
+0.119282906
+0.105691566
+0.103178193
+0.103299755
+0.116559638
+0.147093655
+0.174300605
+0.192816453
+0.225033222
+0.256275465
+0.29520689
+0.329975262
+0.212953542
+0.14033145
+0.12169154
+0.107946817
+0.104226157
+0.103990429
+0.11311778
+0.133203463
+0.164068105
+0.184506651
+0.213125052
+0.243039855
+0.281083991
+0.316542569
+0.26132289
+0.145563872
+0.121801749
+0.106622813
+0.102391531
+0.101778566
+0.107934734
+0.128878433
+0.15691189
+0.179384749
+0.205495872
+0.235861974
+0.273246427
+0.306460953
+0.265239279
+0.148765421
+0.126781153
+0.111583935
+0.106407763
+0.103482985
+0.108129681
+0.120652224
+0.151233065
+0.177092574
+0.201827088
+0.229204715
+0.265434018
+0.299324895
+0.27974197
+0.147305636
+0.122595288
+0.108725668
+0.10419569
+0.103174862
+0.108983376
+0.121671907
+0.152746548
+0.177674916
+0.204759106
+0.233605112
+0.269278428
+0.305317106
+0.309527503
+0.155808929
+0.130642802
+0.113346428
+0.105250789
+0.102303929
+0.10591964
+0.113765696
+0.143343938
+0.170867814
+0.19503254
+0.219887107
+0.256426929
+0.29177608
+0.336306801
+0.1871556
+0.136649752
+0.115072773
+0.105695475
+0.099366808
+0.102453147
+0.108648847
+0.137388394
+0.162430772
+0.185824201
+0.210413613
+0.243943762
+0.275588035
+0.317916736
+0.230242318
+0.144400652
+0.120369103
+0.108346922
+0.100810083
+0.103717048
+0.105981099
+0.130073534
+0.1562207
+0.18205547
+0.205840146
+0.240251646
+0.271422639
+0.31417936
+0.278487502
+0.153559463
+0.123461276
+0.110297538
+0.102211379
+0.102557627
+0.102967729
+0.122406489
+0.147502461
+0.176654143
+0.199030284
+0.230751172
+0.261638001
+0.302605406
+0.313972383
+0.163386812
+0.129586299
+0.114482049
+0.101073155
+0.099864099
+0.100232014
+0.113285909
+0.139074794
+0.169815479
+0.18762258
+0.218302743
+0.250946231
+0.288625007
+0.326480136
+0.208546124
+0.137696677
+0.118097865
+0.102225911
+0.099254779
+0.098848844
+0.108501297
+0.13152405
+0.161921923
+0.181239226
+0.211692204
+0.24348356
+0.282185196
+0.316898257
+0.249438428
+0.140393487
+0.119401818
+0.104509703
+0.099677851
+0.100334202
+0.109162909
+0.130797856
+0.163102023
+0.182149431
+0.210157316
+0.242016589
+0.279475001
+0.315405297
+0.274732213
+0.146555541
+0.122840916
+0.107304012
+0.100932897
+0.098882334
+0.105654073
+0.122606125
+0.151756037
+0.174679051
+0.202336574
+0.231421433
+0.267192823
+0.302478173
+0.316695344
+0.158486474
+0.128295422
+0.111951282
+0.103229397
+0.0995103
+0.10528522
+0.115645275
+0.146358824
+0.172507396
+0.19708759
+0.223985168
+0.26110254
+0.295480187
+0.33773889
+0.178808564
+0.133931124
+0.114295907
+0.10544522
+0.100796961
+0.103657156
+0.109230358
+0.13723241
+0.164259103
+0.187467272
+0.213508448
+0.249560306
+0.281454996
+0.326209207
+0.241518678
+0.14595966
+0.11943932
+0.107547398
+0.102184716
+0.105568293
+0.10935765
+0.135294139
+0.163806293
+0.189826897
+0.214017353
+0.25038697
+0.283528685
+0.327345558
+0.248590416
+0.144412116
+0.118857552
+0.107680366
+0.099912591
+0.101906072
+0.106694225
+0.132986859
+0.159288139
+0.18268287
+0.20682067
+0.241575711
+0.27491378
+0.31741571
+0.281945256
+0.153750353
+0.124258673
+0.113237892
+0.104169706
+0.104821995
+0.109038121
+0.126600484
+0.153909311
+0.184611559
+0.207160513
+0.24049629
+0.271926243
+0.314916454
+0.299322518
+0.161285266
+0.129487606
+0.114184607
+0.105526055
+0.106147406
+0.108793383
+0.12906516
+0.15629529
+0.186956913
+0.210046334
+0.244214086
+0.276750909
+0.320213929
+0.281997499
+0.1525351
+0.125998977
+0.114205076
+0.106329593
+0.109241871
+0.112967269
+0.13939933
+0.16612165
+0.194989792
+0.219791756
+0.257948708
+0.290680167
+0.334490268
+0.22027139
+0.141450935
+0.119363906
+0.110797385
+0.10523788
+0.10845974
+0.112418262
+0.140650991
+0.16835591
+0.194404587
+0.218345045
+0.256838871
+0.289516318
+0.333181682
+0.23175019
+0.145570135
+0.121014367
+0.112128316
+0.104937726
+0.109160101
+0.113913516
+0.140048495
+0.168116798
+0.194822555
+0.221214303
+0.258608291
+0.290719283
+0.335710578
+0.23392117
+0.146847473
+0.122258998
+0.113347061
+0.106346053
+0.107899795
+0.112778574
+0.138888084
+0.167321438
+0.193953029
+0.217964372
+0.254532061
+0.288062682
+0.331200549
+0.205033602
+0.14393556
+0.121954364
+0.11323951
+0.106944957
+0.109852026
+0.11429763
+0.141768696
+0.169869916
+0.19644031
+0.222626122
+0.260597867
+0.293375003
+0.339246606
+0.20221299
+0.142475464
+0.12032406
+0.111995454
+0.1052921
+0.108116879
+0.114194506
+0.143518428
+0.171397253
+0.197395514
+0.22413273
+0.26208583
+0.297920242
+0.340983317
+0.203088299
+0.142482913
+0.118500527
+0.108510211
+0.104509032
+0.108310524
+0.113495395
+0.143377075
+0.171797565
+0.195135421
+0.221894825
+0.257498144
+0.291912564
+0.33645782
+0.204919073
+0.138805952
+0.117972145
+0.107777506
+0.102320345
+0.104693979
+0.109142447
+0.137936633
+0.16377427
+0.188568631
+0.210812431
+0.24684679
+0.279212208
+0.322532575
+0.261835886
+0.152028337
+0.122331343
+0.109097291
+0.101163996
+0.103333829
+0.105873297
+0.124263313
+0.150775687
+0.178837323
+0.199849047
+0.232213007
+0.263656346
+0.304475683
+0.324570014
+0.170325125
+0.132279057
+0.11872058
+0.106739231
+0.10491075
+0.106624023
+0.123235141
+0.147943409
+0.182474339
+0.20288247
+0.237608659
+0.269281841
+0.311223777
+0.328505778
+0.164909058
+0.128842824
+0.116161738
+0.104853146
+0.103904505
+0.105155384
+0.119105787
+0.144832383
+0.175994213
+0.19591115
+0.228662192
+0.261846983
+0.300394195
+0.340004892
+0.198334994
+0.139112202
+0.123303111
+0.111376136
+0.107680477
+0.107443499
+0.119917034
+0.146052742
+0.178312537
+0.199492488
+0.230113957
+0.263542965
+0.303407046
+0.326654228
+0.170660022
+0.131380781
+0.116653612
+0.105570904
+0.10401935
+0.104191588
+0.117518816
+0.142418697
+0.174276515
+0.192942572
+0.224009144
+0.256328625
+0.29561073
+0.333113625
+0.191982785
+0.136265551
+0.11814949
+0.103074667
+0.100970198
+0.103592529
+0.114973412
+0.137995594
+0.170117577
+0.190126544
+0.220133016
+0.251572138
+0.293740375
+0.329584112
+0.239531675
+0.137161588
+0.118522874
+0.10624361
+0.102481128
+0.101839725
+0.108761463
+0.128841159
+0.159669607
+0.180719715
+0.207529015
+0.239973184
+0.276282544
+0.311649771
+0.246803985
+0.144046296
+0.124146859
+0.109638074
+0.104833044
+0.105460385
+0.112557799
+0.132934786
+0.164503074
+0.186989269
+0.214221432
+0.248300437
+0.286365725
+0.321778006
+0.261711155
+0.145704048
+0.123551602
+0.110752808
+0.107323606
+0.105220647
+0.111628377
+0.129189023
+0.162189543
+0.187808381
+0.214602681
+0.247012892
+0.28570849
+0.32334425
+0.277266395
+0.144962073
+0.122170098
+0.108599121
+0.103583676
+0.102485296
+0.10939594
+0.124116391
+0.155814314
+0.180403573
+0.205908452
+0.236295288
+0.273803079
+0.307092661
+0.320033329
+0.157543682
+0.129736678
+0.113566129
+0.10603554
+0.103333834
+0.108384748
+0.118532199
+0.150452778
+0.176053021
+0.201566911
+0.229371675
+0.267128893
+0.301147325
+0.343876811
+0.181673569
+0.137316955
+0.11624195
+0.107043505
+0.102863524
+0.107863969
+0.116404866
+0.146195767
+0.173877824
+0.199943898
+0.226182108
+0.262380218
+0.298954057
+0.334519721
+0.172906891
+0.136066752
+0.116752
+0.109776096
+0.107266212
+0.111602337
+0.118749335
+0.151696262
+0.180029566
+0.204070599
+0.232620412
+0.273310584
+0.308710365
+0.343832075
+0.171334451
+0.135317955
+0.116065702
+0.107479232
+0.103408158
+0.107798294
+0.114648209
+0.145105045
+0.173203558
+0.19970562
+0.223349415
+0.261994753
+0.296064333
+0.340457248
+0.188932859
+0.140896939
+0.120438963
+0.111863743
+0.106242155
+0.110643332
+0.116065025
+0.142203652
+0.17251877
+0.198572709
+0.224529306
+0.262308868
+0.295898605
+0.341164069
+0.201078896
+0.141408501
+0.11987157
+0.112020254
+0.108131105
+0.111067237
+0.117266792
+0.145581919
+0.176941719
+0.202377119
+0.228083404
+0.266912024
+0.302645866
+0.346042225
+0.181285813
+0.134482439
+0.115380082
+0.107164183
+0.103749043
+0.107950221
+0.115688935
+0.145605564
+0.173460382
+0.20030489
+0.224930764
+0.265046617
+0.298462293
+0.343840101
+0.186981672
+0.141885999
+0.123516242
+0.114449305
+0.107223037
+0.11126682
+0.119111471
+0.147598577
+0.178455931
+0.205173774
+0.230432197
+0.270278937
+0.306302362
+0.33867445
+0.172890489
+0.137041335
+0.119008242
+0.111588851
+0.107838607
+0.112862855
+0.119662719
+0.150367471
+0.180526755
+0.208326
+0.234277024
+0.273604912
+0.309792191
+0.341679801
+0.172725439
+0.138900076
+0.119075482
+0.110730834
+0.106046012
+0.110774011
+0.119902146
+0.152645793
+0.181836959
+0.207178715
+0.233977964
+0.271930651
+0.30997818
+0.311613433
+0.158879255
+0.133318593
+0.116778879
+0.109327091
+0.105060445
+0.109836776
+0.119504648
+0.154008079
+0.18122514
+0.207376892
+0.235581551
+0.272638773
+0.309204591
+0.322829892
+0.161756428
+0.134924576
+0.117892884
+0.109514434
+0.104792946
+0.109616361
+0.121439118
+0.153488968
+0.181162379
+0.206042784
+0.236120456
+0.274997617
+0.309888808
+0.350937105
+0.203208735
+0.16276705
+0.137137534
+0.125234778
+0.119394441
+0.128725803
+0.138559143
+0.17661662
+0.214290142
+0.244195002
+0.276854901
+0.324839937
+0.367120416
+0.340071272
+0.188176151
+0.158709205
+0.138303675
+0.124909989
+0.119864335
+0.129398144
+0.146159525
+0.187396362
+0.219016214
+0.251381793
+0.284414763
+0.330553557
+0.374570122
+0.22096683
+0.15779848
+0.141911524
+0.126438523
+0.120036105
+0.118983662
+0.129314083
+0.156578538
+0.193457845
+0.216405707
+0.251161482
+0.286721837
+0.330160488
+0.370734205
+0.199879326
+0.144299795
+0.126852167
+0.112802233
+0.108653763
+0.110939169
+0.126091598
+0.153509179
+0.186892877
+0.210008289
+0.241772464
+0.276433917
+0.319297519
+0.361264146
+0.233925418
+0.156900934
+0.137655919
+0.121631516
+0.117644554
+0.116910965
+0.127459405
+0.151948093
+0.189804687
+0.211050056
+0.245107397
+0.279072083
+0.321929279
+0.357175364
+0.196442885
+0.149854301
+0.133798594
+0.121813963
+0.122077138
+0.12173037
+0.145722185
+0.17787167
+0.212776768
+0.239230811
+0.278434482
+0.315104468
+0.364354239
+0.274369346
+0.165799956
+0.141037259
+0.129299241
+0.120433241
+0.122738959
+0.129821217
+0.160400242
+0.196987259
+0.225066191
+0.255081103
+0.296405859
+0.336163486
+0.383406859
+0.197868557
+0.156036564
+0.134152656
+0.122581669
+0.114877434
+0.117724712
+0.128313985
+0.161271281
+0.194405241
+0.22165553
+0.251651537
+0.293151812
+0.329370185
+0.372043894
+0.188461154
+0.152279552
+0.13259855
+0.122195733
+0.115725191
+0.122397868
+0.130638246
+0.165071263
+0.197518821
+0.226070146
+0.255674956
+0.296744505
+0.334384955
+0.354658246
+0.184709505
+0.15228273
+0.132219698
+0.123477916
+0.116966644
+0.124863794
+0.136257647
+0.176658554
+0.207111225
+0.23580906
+0.267024331
+0.310808868
+0.35014056
+0.306641856
+0.166018187
+0.142937409
+0.126829931
+0.118288096
+0.113762441
+0.121227562
+0.139952735
+0.176358972
+0.201445002
+0.231101948
+0.264033409
+0.303429424
+0.342816169
+0.28790658
+0.16295367
+0.142248559
+0.124993534
+0.118160232
+0.114136657
+0.121533498
+0.144905161
+0.179034013
+0.205688733
+0.236230258
+0.269478854
+0.310376164
+0.351316026
+0.231310281
+0.15412465
+0.136289732
+0.12159579
+0.115601807
+0.115514621
+0.12426208
+0.148768164
+0.183671179
+0.207899349
+0.239419098
+0.274668726
+0.316684261
+0.357499905
+0.285965133
+0.166721102
+0.139944925
+0.125794209
+0.121967976
+0.120692879
+0.128463259
+0.15751953
+0.193303376
+0.216103113
+0.251675293
+0.288428195
+0.328675665
+0.314683959
+0.180620518
+0.14676182
+0.132153242
+0.122961202
+0.120306526
+0.119877986
+0.138040819
+0.171617903
+0.205651808
+0.229375397
+0.263825133
+0.299703873
+0.346689281
+0.296865033
+0.168496408
+0.141669553
+0.128594978
+0.118227214
+0.121321106
+0.120356109
+0.142538455
+0.174349402
+0.207822684
+0.232844704
+0.270653592
+0.305161609
+0.353529615
+0.276430805
+0.167365372
+0.142820642
+0.13106804
+0.117742008
+0.116322535
+0.121005899
+0.141562887
+0.175104868
+0.207275292
+0.231907939
+0.26843876
+0.305162392
+0.353191806
+0.292299639
+0.167888703
+0.14088862
+0.127310349
+0.11906721
+0.120926733
+0.120545173
+0.142689601
+0.176080332
+0.210217518
+0.235058237
+0.271578746
+0.308939147
+0.355439557
+0.280336726
+0.165251841
+0.139158941
+0.127598421
+0.117954924
+0.116066808
+0.11715123
+0.139992948
+0.171587958
+0.202963907
+0.227663585
+0.263225817
+0.297491128
+0.344435338
+0.327461354
+0.171337543
+0.142925903
+0.129290654
+0.117192376
+0.115098428
+0.116888419
+0.134778545
+0.165823141
+0.20013241
+0.223515219
+0.260132446
+0.295435044
+0.339455622
+0.322719398
+0.169913176
+0.142627728
+0.13007664
+0.116481651
+0.114938793
+0.117302116
+0.135640938
+0.167553916
+0.201547666
+0.223505481
+0.261905564
+0.29695384
+0.341303376
+0.314666519
+0.172345925
+0.141631899
+0.128599616
+0.116989148
+0.114352078
+0.114989627
+0.130569763
+0.161946911
+0.195878786
+0.217037074
+0.252681077
+0.287635864
+0.330574677
+0.345254401
+0.180193234
+0.144713188
+0.130240911
+0.117599979
+0.113654529
+0.111294176
+0.122799383
+0.152167164
+0.186837943
+0.206797121
+0.239281347
+0.27227932
+0.314889073
+0.355108419
+0.208828623
+0.147903955
+0.133223346
+0.120912881
+0.114234996
+0.109924338
+0.117183888
+0.14212242
+0.174629197
+0.194776657
+0.226787552
+0.260074898
+0.299183364
+0.338205269
+0.287859354
+0.161973005
+0.138870977
+0.122435895
+0.116750037
+0.111128604
+0.115787021
+0.141681953
+0.173003632
+0.198039299
+0.2295403
+0.262318587
+0.302746943
+0.34082755
+0.293038914
+0.16196884
+0.138437177
+0.123057925
+0.116107852
+0.112366464
+0.118066697
+0.131271012
+0.168630944
+0.19602384
+0.22383564
+0.257926525
+0.295375832
+0.334289195
+0.329681039
+0.171226506
+0.145784956
+0.127222906
+0.11763993
+0.110278296
+0.114575881
+0.132797516
+0.167811001
+0.19442166
+0.22437194
+0.25610195
+0.295179063
+0.334582945
+0.353307494
+0.181471668
+0.149985406
+0.128817847
+0.1178192
+0.112168236
+0.117452066
+0.1303406
+0.167890741
+0.194944315
+0.223190852
+0.254984508
+0.292679076
+0.332218217
+0.34769273
+0.184612644
+0.156071317
+0.132881319
+0.121161633
+0.115869469
+0.123692923
+0.134098345
+0.174236025
+0.204456876
+0.231286337
+0.263444679
+0.307092136
+0.345429096
+0.313685126
+0.178610902
+0.152295918
+0.131928042
+0.124517503
+0.120377782
+0.127464365
+0.144021632
+0.183941346
+0.212721526
+0.242449099
+0.277625761
+0.319824371
+0.359797209
+0.236150795
+0.157688549
+0.137210727
+0.122798084
+0.115391399
+0.111792822
+0.120729969
+0.141265291
+0.177508355
+0.198473519
+0.228185675
+0.261913854
+0.301683985
+0.339592615
+0.277310764
+0.157913654
+0.137519111
+0.121457101
+0.114645622
+0.114030989
+0.12330079
+0.141274354
+0.178039134
+0.203413237
+0.23319857
+0.267066072
+0.306820317
+0.347446434
+0.293714232
+0.159503282
+0.137528851
+0.121780486
+0.115955616
+0.114044583
+0.120189295
+0.13846067
+0.174708733
+0.200956271
+0.230098012
+0.263412131
+0.302262631
+0.341983491
+0.301448103
+0.16712856
+0.142332059
+0.125332449
+0.117557276
+0.111473345
+0.119187841
+0.134350845
+0.168075796
+0.196452697
+0.226067302
+0.258137208
+0.298030463
+0.33516217
+0.305716106
+0.162580092
+0.140645869
+0.123608499
+0.113279067
+0.110576162
+0.118173732
+0.133550745
+0.170813596
+0.196112178
+0.223887208
+0.258133302
+0.29499402
+0.334909151
+0.308582135
+0.164831697
+0.1399303
+0.121840174
+0.113229015
+0.108172372
+0.113836721
+0.128755924
+0.163550349
+0.191220171
+0.217139323
+0.247936683
+0.285919271
+0.323635297
+0.35209647
+0.186531859
+0.147829952
+0.128293583
+0.120189974
+0.112670112
+0.116728948
+0.125846355
+0.161201975
+0.191641888
+0.217387813
+0.24649143
+0.287486868
+0.324236806
+0.337204872
+0.179971941
+0.145863451
+0.12628781
+0.117695506
+0.111796054
+0.117691808
+0.133746787
+0.168153766
+0.197591757
+0.225577515
+0.256281491
+0.295086992
+0.335102591
+0.333727858
+0.176298417
+0.14466955
+0.12478037
+0.115568121
+0.109919656
+0.113251829
+0.129572119
+0.164365972
+0.190088615
+0.219191868
+0.251330941
+0.288313117
+0.328573195
+0.37684209
+0.19863566
+0.147866307
+0.125936563
+0.11292782
+0.103304166
+0.102462972
+0.109047682
+0.138958015
+0.165425915
+0.189295859
+0.212299088
+0.246632161
+0.282070594
+0.324738265
+0.332989425
+0.176228627
+0.14024827
+0.124832089
+0.113250632
+0.113161986
+0.114709843
+0.126860934
+0.156153875
+0.190645697
+0.211558623
+0.246258361
+0.281586586
+0.324124675
+0.362204711
+0.204064334
+0.148379119
+0.129751182
+0.116356087
+0.113813285
+0.115207967
+0.128120148
+0.155027318
+0.192591679
+0.212760806
+0.247973824
+0.282588979
+0.325630659
+0.368915202
+0.221982952
+0.162769835
+0.139952126
+0.128869416
+0.12417751
+0.12250257
+0.132215442
+0.16230515
+0.199868625
+0.222005088
+0.258441173
+0.295317881
+0.339989553
+0.33388255
+0.183622136
+0.150581662
+0.132759867
+0.118256079
+0.116562336
+0.117134574
+0.130727533
+0.164562275
+0.19784827
+0.219119893
+0.255487958
+0.290776548
+0.33495291
+0.384748102
+0.470988493
+0.615102893
+0.914515289
+75.470463061
+0.53937625
+0.321939507
+0.234875727
+0.1936444
+0.180785187
+0.176389581
+0.237375977
+0.284661236
+0.326629435
+0.375056252
+0.45361934
+0.428843982
+0.214717485
+0.172287204
+0.147443252
+0.13109796
+0.128237504
+0.135847731
+0.171452416
+0.202505143
+0.223942288
+0.252073048
+0.289925068
+0.320549359
+0.372104026
+0.267339127
+0.179218736
+0.145198262
+0.126420533
+0.1163149
+0.11854786
+0.127117041
+0.1633024
+0.186402142
+0.209541883
+0.235657548
+0.268278289
+0.299642681
+0.342829886
+0.249222072
+0.165781036
+0.137884597
+0.121807533
+0.111609401
+0.114807251
+0.120260873
+0.151373287
+0.175885418
+0.199003493
+0.22330875
+0.257471828
+0.286210034
+0.328340108
+0.34674237
+0.199285055
+0.154125932
+0.134747372
+0.12047233
+0.117864791
+0.118773432
+0.136809342
+0.167493112
+0.196605119
+0.218804031
+0.25398226
+0.283686556
+0.32686673
+0.363509484
+0.206284816
+0.155303323
+0.133946438
+0.117288179
+0.112941271
+0.110546802
+0.120865142
+0.149374651
+0.181518467
+0.198783443
+0.229975024
+0.261282229
+0.299119509
+0.334986539
+0.272184942
+0.160880381
+0.138431054
+0.118521038
+0.111057425
+0.107387494
+0.112116119
+0.13664351
+0.167088063
+0.188152292
+0.216666801
+0.248035361
+0.286333681
+0.321444516
+0.347583462
+0.169729197
+0.138039129
+0.118941662
+0.10941811
+0.102666056
+0.104885943
+0.114374807
+0.145480086
+0.171201274
+0.195845488
+0.221042877
+0.256445793
+0.29048158
+0.332649831
+0.277697679
+0.159658565
+0.131757959
+0.116709588
+0.10500063
+0.102939284
+0.104436413
+0.123418361
+0.149046737
+0.177328487
+0.199692398
+0.23118252
+0.26153473
+0.301058722
+0.33655419
+0.230774345
+0.146440031
+0.127871258
+0.112884918
+0.106851091
+0.104094176
+0.113860799
+0.132504154
+0.165418488
+0.18754964
+0.214299731
+0.247074951
+0.285309313
+0.320823115
+0.298553994
+0.152316931
+0.127911102
+0.112071432
+0.104116416
+0.099229354
+0.103257774
+0.115107304
+0.145531962
+0.170232687
+0.194404663
+0.220749234
+0.255942359
+0.290461687
+0.335747998
+0.243106219
+0.146932998
+0.121638266
+0.109640349
+0.100762576
+0.101447105
+0.105638128
+0.132098792
+0.157490346
+0.181536803
+0.207617053
+0.241128103
+0.274007906
+0.315939752
+0.341750159
+0.180510193
+0.142240935
+0.125129396
+0.110514721
+0.105304171
+0.104413342
+0.118316406
+0.145453057
+0.17719375
+0.197685795
+0.229715029
+0.261400566
+0.305199436
+0.343385622
+0.246892193
+0.147491225
+0.126141788
+0.110632794
+0.103880844
+0.101739187
+0.111553675
+0.134116388
+0.16590505
+0.187342456
+0.21456895
+0.24920484
+0.287887377
+0.323151806
+0.366484791
+0.212256877
+0.176488546
+0.156516758
+0.149634758
+0.143761502
+0.150435848
+0.164081464
+0.217248731
+0.256053352
+0.292426733
+0.332075882
+0.392006711
+0.380007233
+0.207843303
+0.186469388
+0.180743423
+0.167768949
+0.160864084
+0.160097368
+0.187074906
+0.236504845
+0.286533062
+0.320951348
+0.379169685
+0.453995555
+0.512290819
+0.224771146
+0.196349345
+0.172923719
+0.161598248
+0.154360831
+0.161985381
+0.175154438
+0.22616187
+0.266445339
+0.305909749
+0.3490031
+0.410916058
+0.443234249
+0.200658805
+0.145113528
+0.124099506
+0.109841444
+0.10725432
+0.108165618
+0.12112827
+0.148510441
+0.178064321
+0.197995224
+0.228176445
+0.256875434
+0.296216667
+0.330477454
+0.273164008
+0.158110764
+0.132426971
+0.114110384
+0.107662912
+0.1078226
+0.114590851
+0.129634535
+0.163244647
+0.183799245
+0.210674596
+0.2409229
+0.277137845
+0.310445824
+0.348480865
+0.188660161
+0.150089497
+0.129448963
+0.120959989
+0.112900702
+0.11542892
+0.126891214
+0.16266814
+0.190159165
+0.217427379
+0.247525007
+0.287540665
+0.321445464
+0.373022008
+0.205609514
+0.153588961
+0.130273699
+0.11775167
+0.108785721
+0.112649766
+0.121607852
+0.153806044
+0.183138259
+0.210075953
+0.2368212
+0.275093533
+0.313978206
+0.360233055
+0.270775062
+0.163848031
+0.134744929
+0.120913897
+0.112796016
+0.112113258
+0.112523569
+0.143234372
+0.171593727
+0.197955434
+0.221438092
+0.258582929
+0.293103038
+0.338208309
+0.310525253
+0.171361437
+0.139181734
+0.122369777
+0.109283948
+0.107350623
+0.108127338
+0.126541997
+0.153723545
+0.187176679
+0.207921588
+0.239348482
+0.272091307
+0.315073307
+0.353591316
+0.21734311
+0.151204962
+0.128394802
+0.111720344
+0.106969688
+0.107426613
+0.118052087
+0.141254538
+0.175207045
+0.195437582
+0.226553539
+0.258910429
+0.30009181
+0.337579459
+0.352591841
+0.181399779
+0.142947134
+0.118963959
+0.112127738
+0.108791919
+0.114120959
+0.133400354
+0.1661537
+0.193953942
+0.220686899
+0.253787743
+0.292423147
+0.331484643
+0.387557783
+0.265760555
+0.15961878
+0.126716737
+0.114494031
+0.108320568
+0.113059922
+0.126913715
+0.163243504
+0.192673375
+0.220625233
+0.250417186
+0.290476802
+0.330104806
+0.383746916
+0.300109572
+0.168238847
+0.131711872
+0.116855218
+0.107484321
+0.109184574
+0.114737415
+0.14539827
+0.173966375
+0.19884512
+0.225636565
+0.264093116
+0.29533876
+0.341382413
+0.286763382
+0.16664448
+0.137328306
+0.122608839
+0.112455707
+0.112781018
+0.115666994
+0.140046054
+0.170970554
+0.200324958
+0.22421053
+0.26194047
+0.296384278
+0.341944548
+0.321479481
+0.173963979
+0.140891937
+0.124973517
+0.113277682
+0.110875765
+0.111642794
+0.13413983
+0.161378983
+0.193675613
+0.217334884
+0.253496184
+0.287550359
+0.333996093
+0.345502658
+0.180782804
+0.142691877
+0.126724499
+0.112646591
+0.109524678
+0.110651704
+0.124046646
+0.153892765
+0.188017096
+0.207214929
+0.240717595
+0.275577286
+0.318587672
+0.358654632
+0.213748129
+0.151270434
+0.133338949
+0.117943964
+0.110916495
+0.109925666
+0.123174827
+0.147117952
+0.18281264
+0.202385523
+0.235570795
+0.269181898
+0.310558645
+0.349518579
+0.254297276
+0.156535151
+0.13451108
+0.116747459
+0.111518107
+0.109221868
+0.117724538
+0.136423415
+0.171075556
+0.195461231
+0.224266782
+0.256755235
+0.296761778
+0.334440156
+0.32789081
+0.170060821
+0.142968179
+0.123829564
+0.115245435
+0.108200205
+0.110748215
+0.128542096
+0.162411584
+0.188150482
+0.215315363
+0.24671632
+0.282347936
+0.321063184
+0.342792568
+0.174039867
+0.141497612
+0.121693012
+0.111830293
+0.106280839
+0.109480148
+0.116394962
+0.149453776
+0.177100166
+0.200255117
+0.227798486
+0.266807223
+0.299220051
+0.346375991
+0.26615457
+0.162290335
+0.134459727
+0.121294264
+0.108927807
+0.10866786
+0.11191545
+0.133450148
+0.16339882
+0.192744994
+0.217464157
+0.254025144
+0.286230055
+0.332046003
+0.330282052
+0.173776587
+0.139711944
+0.124174616
+0.110467696
+0.108090936
+0.109868011
+0.12701653
+0.155025783
+0.186892467
+0.208911487
+0.244559144
+0.2752675
+0.319559443
+0.361012127
+0.213346988
+0.148487583
+0.127699809
+0.113072841
+0.10861385
+0.107786666
+0.117071522
+0.141455166
+0.173156799
+0.194056864
+0.225721674
+0.258747312
+0.298154537
+0.336566921
+0.299612759
+0.164499024
+0.13749336
+0.117514437
+0.110207594
+0.107383335
+0.11521726
+0.127656164
+0.163808038
+0.191005784
+0.218335666
+0.24932501
+0.289117754
+0.328134459
+0.364880341
+0.189692874
+0.148031596
+0.125232998
+0.11389414
+0.106683598
+0.109161505
+0.116887357
+0.149009665
+0.17831886
+0.204007864
+0.231215766
+0.269604193
+0.305954243
+0.353400027
+0.253150828
+0.156280467
+0.132221144
+0.118986618
+0.108930465
+0.110022856
+0.114364816
+0.140312203
+0.17078582
+0.198577627
+0.22455392
+0.2614785
+0.295694862
+0.341435809
+0.314745665
+0.169896763
+0.138946637
+0.124949301
+0.113735756
+0.112064982
+0.111666911
+0.124504095
+0.155097921
+0.188176318
+0.208792479
+0.242489156
+0.27714187
+0.318879554
+0.335028598
+0.178713391
+0.1395508
+0.1233741
+0.109024006
+0.106494902
+0.106596256
+0.117011211
+0.144481353
+0.176329339
+0.195350767
+0.227714585
+0.259942622
+0.30019224
+0.33858301
+0.301074944
+0.161702841
+0.138140286
+0.121373536
+0.113289874
+0.108242603
+0.114949657
+0.127337365
+0.164894285
+0.190673913
+0.217902701
+0.249961989
+0.288495624
+0.325974681
+0.315568892
+0.166317404
+0.138271224
+0.119446878
+0.111177434
+0.10728042
+0.111330298
+0.121855253
+0.157913743
+0.183728371
+0.20953503
+0.239276202
+0.27737161
+0.314302127
+0.359018079
+0.186566014
+0.14352667
+0.120939945
+0.111921599
+0.10631605
+0.109034111
+0.117670584
+0.14884472
+0.179013911
+0.203102246
+0.229108695
+0.268463629
+0.304138162
+0.350295775
+0.274191989
+0.159842068
+0.133301037
+0.121246193
+0.111730298
+0.111410455
+0.113297218
+0.134740875
+0.165545533
+0.19604613
+0.221101751
+0.256510191
+0.289538486
+0.335440579
+0.323687766
+0.169663693
+0.135840766
+0.12118984
+0.10992942
+0.107938335
+0.108297083
+0.120509739
+0.149754768
+0.181782442
+0.202996674
+0.236343248
+0.269671177
+0.311019852
+0.351618999
+0.22733537
+0.14807238
+0.128620068
+0.113986225
+0.108440416
+0.106699382
+0.116557152
+0.138067476
+0.172076756
+0.194259628
+0.225424494
+0.260199187
+0.298483969
+0.338938847
+0.295330702
+0.159024729
+0.136204984
+0.120703072
+0.113341593
+0.107868075
+0.112080609
+0.126103101
+0.162798827
+0.189695898
+0.216130889
+0.247615753
+0.285196527
+0.323051363
+0.323428393
+0.167326516
+0.138354922
+0.121269996
+0.114507994
+0.110130201
+0.114764399
+0.1248467
+0.161052533
+0.187934032
+0.215905942
+0.246115083
+0.28544736
+0.321776526
+0.355427735
+0.176902048
+0.143230318
+0.12368108
+0.112103682
+0.106277822
+0.111481601
+0.117179442
+0.146768325
+0.177759909
+0.203042821
+0.231318792
+0.269592846
+0.302499787
+0.349832864
+0.243685667
+0.155069278
+0.131257506
+0.122052442
+0.114800025
+0.114307684
+0.116940537
+0.148063424
+0.177930534
+0.206339317
+0.234304092
+0.273672464
+0.30841221
+0.357809236
+0.265547187
+0.159505509
+0.130698759
+0.11891782
+0.11217889
+0.112055766
+0.115395492
+0.141823138
+0.171564989
+0.199912315
+0.226971937
+0.2650812
+0.298342515
+0.345757935
+0.279910563
+0.16334393
+0.132477658
+0.118545999
+0.109618225
+0.111042281
+0.114971847
+0.13797779
+0.169195052
+0.199406484
+0.224712937
+0.262162307
+0.296817261
+0.3428355
+0.299155741
+0.165299131
+0.136083892
+0.122485826
+0.11055244
+0.110600721
+0.111294885
+0.132184847
+0.161772428
+0.193705415
+0.217333542
+0.253530886
+0.287401782
+0.331641331
+0.36244
+0.186855132
+0.139403305
+0.123038376
+0.113524146
+0.110912022
+0.112122798
+0.125654146
+0.153467151
+0.187442838
+0.208222644
+0.24375572
+0.277885677
+0.320375703
+0.355033678
+0.191754174
+0.142856572
+0.125260711
+0.111904779
+0.110099005
+0.110846762
+0.126028623
+0.150755809
+0.186317166
+0.208564675
+0.241074899
+0.275014336
+0.317389935
+0.358769392
+0.205617083
+0.144392764
+0.125598417
+0.112675296
+0.10981036
+0.109197915
+0.117755118
+0.142402668
+0.174146229
+0.195872802
+0.228358653
+0.261352364
+0.30168516
+0.340641554
+0.274488297
+0.147129522
+0.124764828
+0.109873121
+0.103457993
+0.102110863
+0.110104422
+0.124713838
+0.156775732
+0.180815107
+0.205337866
+0.235144873
+0.271398572
+0.30646092
+0.288275374
+0.155518081
+0.129963868
+0.111678686
+0.10634673
+0.103828929
+0.10848771
+0.126007322
+0.155455269
+0.180586462
+0.207480409
+0.235330551
+0.272871431
+0.308232268
+0.227518083
+0.139933461
+0.120823179
+0.109489217
+0.107383549
+0.104634863
+0.112296444
+0.132893282
+0.162982736
+0.185763212
+0.211460914
+0.242837654
+0.281099104
+0.300436521
+0.164484605
+0.125750865
+0.111948165
+0.102411539
+0.102871068
+0.10515809
+0.11810418
+0.144985002
+0.173197329
+0.193080368
+0.222239409
+0.252525998
+0.291913433
+0.290717865
+0.160150978
+0.127945752
+0.114616591
+0.107332663
+0.10822667
+0.109044636
+0.127369192
+0.153900797
+0.183983897
+0.206752393
+0.240498498
+0.273564866
+0.314996459
+0.240497561
+0.145063126
+0.118957093
+0.10850995
+0.102262894
+0.107438809
+0.112992327
+0.139702265
+0.168222403
+0.194265676
+0.220296397
+0.255207133
+0.29083599
+0.319923574
+0.161733004
+0.129250278
+0.111956238
+0.103804085
+0.100642276
+0.103967314
+0.112194727
+0.141427362
+0.166982721
+0.190343037
+0.216013187
+0.252563447
+0.285001276
+0.321145496
+0.163641121
+0.126866382
+0.110318484
+0.103451327
+0.098683795
+0.102854454
+0.11106619
+0.139861119
+0.164062265
+0.189271063
+0.212135756
+0.248348309
+0.282045561
+0.303881456
+0.153059187
+0.12231635
+0.10697428
+0.100030404
+0.09661396
+0.102694091
+0.114824455
+0.143059595
+0.166908867
+0.191710219
+0.214582569
+0.248906015
+0.282614986
+0.227372306
+0.132701618
+0.112971442
+0.101160243
+0.099905144
+0.101352794
+0.109216302
+0.12992064
+0.159144734
+0.177556374
+0.203345066
+0.234076601
+0.270378007
+0.301043761
+0.172246605
+0.128798146
+0.111625511
+0.100604048
+0.101649408
+0.105745171
+0.120397192
+0.146555986
+0.176210547
+0.198395347
+0.229907816
+0.260946798
+0.30100022
+0.244038694
+0.141141375
+0.116590542
+0.107018448
+0.101081807
+0.104864446
+0.111228846
+0.137713473
+0.166434235
+0.188475077
+0.213979551
+0.250963769
+0.281169108
+0.303250992
+0.153811007
+0.123674157
+0.107299697
+0.100081655
+0.097079376
+0.101840814
+0.113880293
+0.141253406
+0.165367312
+0.188236538
+0.212220497
+0.246234101
+0.278805629
+0.284776489
+0.145465835
+0.11992558
+0.105331164
+0.09949921
+0.097763071
+0.103725806
+0.12043938
+0.147668899
+0.170282969
+0.195301872
+0.224125394
+0.257512179
+0.29234328
+0.268257498
+0.140457732
+0.118240275
+0.103543306
+0.098491089
+0.097750102
+0.105137831
+0.122526923
+0.149461183
+0.173443528
+0.199526177
+0.22833246
+0.265120584
+0.2992495
+0.2560213
+0.138940343
+0.116997468
+0.102817321
+0.097956924
+0.098105465
+0.106230482
+0.124755664
+0.153117574
+0.174180608
+0.200525704
+0.229864433
+0.266923389
+0.301157461
+0.230616305
+0.135938585
+0.113986439
+0.101524878
+0.099882645
+0.10056207
+0.106017203
+0.128137004
+0.155323137
+0.177868041
+0.203185901
+0.234443008
+0.271436339
+0.305374215
+0.222957431
+0.133453804
+0.115220237
+0.102175813
+0.099680615
+0.099736605
+0.108655889
+0.128850699
+0.158617655
+0.178443664
+0.206274951
+0.238219503
+0.275136688
+0.310968306
+0.205741932
+0.132052821
+0.113527067
+0.101085558
+0.100503007
+0.101865763
+0.111558847
+0.135950616
+0.165760281
+0.184945668
+0.215308559
+0.246703217
+0.286315183
+0.306178119
+0.1639268
+0.123728013
+0.110187966
+0.099765616
+0.098600985
+0.101193213
+0.117024865
+0.142399757
+0.170260418
+0.191606109
+0.221230304
+0.251619914
+0.291495838
+0.292795416
+0.152046851
+0.119042773
+0.107377146
+0.099469315
+0.101785815
+0.105755903
+0.126188627
+0.149857485
+0.177861272
+0.202438459
+0.234729362
+0.265643917
+0.306479108
+0.255089432
+0.145488754
+0.118912148
+0.108726776
+0.102391021
+0.105157884
+0.109543855
+0.133738804
+0.160084473
+0.185791602
+0.211688003
+0.245217391
+0.276431737
+0.320384986
+0.199905344
+0.132173759
+0.112090407
+0.104356013
+0.099793896
+0.105098145
+0.113123475
+0.143139077
+0.170051149
+0.195431822
+0.218868858
+0.256547395
+0.290108762
+0.302945269
+0.153203982
+0.123018589
+0.107211626
+0.100553321
+0.097330262
+0.103134143
+0.116834397
+0.14525188
+0.169882296
+0.193866152
+0.2208526
+0.257413121
+0.290620167
+0.303786151
+0.154251947
+0.125067175
+0.109879115
+0.104019087
+0.100896132
+0.106609962
+0.119369856
+0.148377597
+0.175256856
+0.201500546
+0.226236692
+0.262609349
+0.29615858
+0.268744531
+0.146896978
+0.124126085
+0.109593856
+0.103477787
+0.102119721
+0.109296513
+0.129179449
+0.15823568
+0.183656353
+0.209783637
+0.24076189
+0.278076263
+0.314117515
+0.198874152
+0.132059437
+0.116073463
+0.104079296
+0.101141496
+0.102068471
+0.11244551
+0.13650421
+0.167489234
+0.185631553
+0.215677049
+0.247563685
+0.288273719
+0.321021496
+0.177761169
+0.12867289
+0.113483215
+0.104015078
+0.102615345
+0.104344295
+0.116165339
+0.141962208
+0.172348432
+0.19182663
+0.222968894
+0.254181312
+0.294899108
+0.305752708
+0.15850495
+0.123858431
+0.110112812
+0.100138323
+0.100952486
+0.103335185
+0.118790796
+0.143709388
+0.174511392
+0.193571936
+0.224643157
+0.257000989
+0.296891965
+0.299734974
+0.158859688
+0.124507803
+0.110249114
+0.100659051
+0.100873685
+0.103999505
+0.125113738
+0.148235098
+0.176887736
+0.199704827
+0.231065318
+0.262396956
+0.303581259
+0.268155525
+0.148746815
+0.118414444
+0.106819129
+0.099131661
+0.101179049
+0.104869241
+0.129264762
+0.154898194
+0.180603971
+0.205855426
+0.240115489
+0.271838218
+0.314797618
+0.216931421
+0.134008492
+0.112967644
+0.104875856
+0.099782701
+0.103803777
+0.112050774
+0.136801761
+0.164546122
+0.189701745
+0.213861746
+0.25122841
+0.283717127
+0.325496011
+0.178265075
+0.133033705
+0.112045356
+0.103229145
+0.09939265
+0.104681898
+0.112315199
+0.140883516
+0.167604548
+0.191983142
+0.218105739
+0.255036884
+0.288518825
+0.321016707
+0.163046078
+0.128351954
+0.112254471
+0.105716738
+0.101795921
+0.106111789
+0.114832429
+0.144986727
+0.172023175
+0.19613875
+0.221268538
+0.257215209
+0.292253393
+0.318324272
+0.161597021
+0.130553143
+0.112616813
+0.104145963
+0.101396653
+0.108513133
+0.121852086
+0.153029402
+0.1768668
+0.20326221
+0.233964683
+0.268784014
+0.304504175
+0.278453191
+0.14818786
+0.122147971
+0.107034285
+0.101591027
+0.101839359
+0.11023599
+0.130151166
+0.16182176
+0.182911567
+0.208585104
+0.240609134
+0.279079596
+0.313307888
+0.193640688
+0.131136422
+0.116326746
+0.104173099
+0.103083052
+0.103776226
+0.117615022
+0.140630184
+0.172101352
+0.191089918
+0.221496403
+0.253954338
+0.293589795
+0.266738815
+0.149138377
+0.121552088
+0.109287244
+0.101769307
+0.104831273
+0.10720517
+0.129002526
+0.154016898
+0.184060052
+0.207340994
+0.241589547
+0.275057426
+0.315156058
+0.193901104
+0.134607605
+0.114560451
+0.106537985
+0.102361388
+0.106252675
+0.115345135
+0.14524053
+0.1717625
+0.19923905
+0.222897022
+0.261844514
+0.295071248
+0.284458324
+0.144764958
+0.121936461
+0.108548081
+0.103066594
+0.100485199
+0.106656422
+0.123407914
+0.151962376
+0.176496595
+0.202289871
+0.231235321
+0.266598452
+0.301806167
+0.240686427
+0.136659473
+0.118305696
+0.104286589
+0.100469938
+0.100256449
+0.108217926
+0.129134296
+0.158215162
+0.178645648
+0.205406681
+0.23637707
+0.272884833
+0.306872084
+0.205660534
+0.132428397
+0.115912164
+0.102970501
+0.101617903
+0.107046369
+0.11640284
+0.138420247
+0.170785422
+0.189617217
+0.220152712
+0.253300332
+0.291818607
+0.299409773
+0.15602814
+0.122335888
+0.110563854
+0.101333894
+0.10100327
+0.105250543
+0.126376809
+0.150570612
+0.179216532
+0.202402632
+0.234743692
+0.265441063
+0.30748828
+0.254152777
+0.141769191
+0.116100446
+0.10499091
+0.097834377
+0.100662074
+0.107567461
+0.133844329
+0.160202342
+0.182499591
+0.207137508
+0.240527419
+0.272203483
+0.312177167
+0.198310931
+0.135006668
+0.116257372
+0.106000333
+0.101226603
+0.105849708
+0.112018484
+0.138090353
+0.165658934
+0.190862994
+0.215755961
+0.251143832
+0.285682332
+0.316451681
+0.157821936
+0.127369148
+0.110877604
+0.103588936
+0.100025253
+0.10609127
+0.118249812
+0.148080883
+0.173847076
+0.196832812
+0.224893996
+0.261326237
+0.295932341
+0.27819054
+0.149134733
+0.123086458
+0.108715112
+0.103048158
+0.103223052
+0.111847964
+0.128556643
+0.160612289
+0.186174889
+0.21262009
+0.242897097
+0.28077652
+0.317147512
+0.212892953
+0.132725219
+0.115679614
+0.104182007
+0.102997377
+0.104032008
+0.114877899
+0.138162072
+0.170235581
+0.190069561
+0.220150631
+0.252530546
+0.292199649
+0.323843109
+0.171035683
+0.12791899
+0.114836181
+0.1042606
+0.102675191
+0.103532583
+0.116276644
+0.140438833
+0.171914273
+0.191395388
+0.221312657
+0.254356528
+0.294156465
+0.294031934
+0.159945729
+0.125721448
+0.11273744
+0.104119612
+0.103866175
+0.107151161
+0.12617655
+0.153130758
+0.183536307
+0.20486252
+0.238116024
+0.270771928
+0.312290607
+0.239199718
+0.141226382
+0.118162678
+0.109448808
+0.102293266
+0.10582424
+0.109755629
+0.132052151
+0.158226779
+0.185825465
+0.210283121
+0.245487087
+0.277801222
+0.319259588
+0.248036764
+0.164114984
+0.139869149
+0.129870962
+0.12260969
+0.125948582
+0.13140658
+0.165975444
+0.201373055
+0.233170838
+0.266261531
+0.310917645
+0.351627108
+0.409544155
+0.228492525
+0.191738148
+0.17225073
+0.157802927
+0.144486734
+0.146897609
+0.15345831
+0.193302934
+0.237683736
+0.276070292
+0.31312274
+0.36676293
+0.424048886
+0.363343101
+0.211480773
+0.191204036
+0.169705012
+0.161198538
+0.157103504
+0.161687025
+0.181519078
+0.240365392
+0.278574033
+0.317017099
+0.363945704
+0.434476552
+0.398553266
+0.221553857
+0.193371267
+0.174771293
+0.158059541
+0.154782368
+0.156964182
+0.17900664
+0.226776803
+0.270675004
+0.299635871
+0.350915759
+0.405128864
+0.453445795
+0.228380339
+0.197223855
+0.169171786
+0.155029503
+0.142833617
+0.146054436
+0.15624132
+0.19730823
+0.236620252
+0.268835324
+0.302141121
+0.351922265
+0.399638263
+0.352020391
+0.197879114
+0.172539168
+0.153401177
+0.144248611
+0.142294087
+0.152915761
+0.169014235
+0.216983876
+0.247042969
+0.283584273
+0.32189557
+0.373076448
+0.413719975
+0.222645728
+0.180436999
+0.165800447
+0.148744842
+0.145006889
+0.142395753
+0.15468867
+0.185808488
+0.229880333
+0.252972424
+0.293115483
+0.331976205
+0.386424934
+0.347844732
+0.187689157
+0.157450118
+0.144357464
+0.131548092
+0.131848975
+0.1399529
+0.160561407
+0.20017723
+0.232311261
+0.260964213
+0.301171231
+0.342157674
+0.396595881
+0.252557842
+0.170798499
+0.142905804
+0.131361947
+0.124169685
+0.12817894
+0.13523594
+0.165865186
+0.201966858
+0.22966898
+0.259555729
+0.301294773
+0.338756074
+0.395712084
+0.25247326
+0.175277022
+0.150809157
+0.138194419
+0.1281592
+0.131829861
+0.139821964
+0.17128381
+0.206660276
+0.237227386
+0.268464026
+0.311471085
+0.349741705
+0.368643344
+0.193350696
+0.161398696
+0.139135404
+0.128775187
+0.123401512
+0.131134083
+0.146845424
+0.184912243
+0.214998209
+0.247352345
+0.281026891
+0.322609944
+0.364388519
+0.298918794
+0.173614478
+0.144241268
+0.125566868
+0.116995028
+0.114394675
+0.122233131
+0.145421836
+0.181499757
+0.20281774
+0.236301922
+0.269861573
+0.310091404
+0.353286066
+0.340183308
+0.182389077
+0.152033163
+0.13195632
+0.123685417
+0.119292259
+0.124543539
+0.139565767
+0.177169515
+0.207255639
+0.237836656
+0.271577816
+0.311691763
+0.354256636
+0.349287125
+0.183433812
+0.154177372
+0.135761877
+0.129019093
+0.122281517
+0.124928537
+0.139319727
+0.178449666
+0.209149173
+0.237887542
+0.272811145
+0.311095254
+0.354658822
+0.336378742
+0.179431225
+0.149628382
+0.132497151
+0.125103277
+0.118850699
+0.125172807
+0.139493372
+0.179343829
+0.207010276
+0.238933163
+0.27060579
+0.310820829
+0.352815757
+0.317503926
+0.169155852
+0.146079282
+0.129193207
+0.122159643
+0.117514194
+0.12494036
+0.143892885
+0.181550487
+0.207633711
+0.23857405
+0.273786871
+0.313642276
+0.354924603
+0.290654665
+0.168932675
+0.143215701
+0.128042639
+0.124021719
+0.121554906
+0.128151441
+0.150144995
+0.187298224
+0.214011497
+0.248857601
+0.283536518
+0.325733841
+0.368752723
+0.29973145
+0.170348608
+0.147705265
+0.129986538
+0.122669069
+0.121031419
+0.130377682
+0.153889667
+0.191838049
+0.219428038
+0.253337218
+0.289305556
+0.333284382
+0.37625738
+0.256294497
+0.16263687
+0.144103457
+0.131836269
+0.126226346
+0.121036523
+0.130645493
+0.154980183
+0.192122632
+0.215872948
+0.251672173
+0.286790984
+0.329441066
+0.372908331
+0.28449615
+0.170462461
+0.149110103
+0.128952845
+0.119913611
+0.117108832
+0.124746351
+0.139635403
+0.180044558
+0.205617731
+0.235357398
+0.267732367
+0.309309171
+0.349015984
+0.359650731
+0.187585515
+0.159040792
+0.136771405
+0.127463945
+0.120324026
+0.12615046
+0.138687127
+0.176441084
+0.208662562
+0.237718795
+0.270545845
+0.312818845
+0.35529476
+0.386343329
+0.189660038
+0.155821951
+0.134612353
+0.124333906
+0.115034726
+0.119767363
+0.130199715
+0.164152697
+0.195967981
+0.223086409
+0.253167481
+0.293567988
+0.331653089
+0.387588584
+0.261287186
+0.16922601
+0.141453053
+0.129071126
+0.120355121
+0.122710267
+0.128430243
+0.156530855
+0.190679461
+0.220887929
+0.25053244
+0.291004979
+0.328786592
+0.381255747
+0.255536377
+0.169214864
+0.141495918
+0.127161447
+0.116824355
+0.120343038
+0.12648098
+0.157618819
+0.191926228
+0.21941132
+0.247340214
+0.288306865
+0.325865198
+0.377774564
+0.267105288
+0.171004544
+0.142714298
+0.130631849
+0.120386892
+0.121936104
+0.131685334
+0.153954355
+0.190694618
+0.221027772
+0.248515313
+0.289067227
+0.329710338
+0.379828201
+0.258317408
+0.17537489
+0.148508545
+0.133839492
+0.124519999
+0.128473472
+0.133552358
+0.166894666
+0.203476075
+0.234723705
+0.265998001
+0.308478501
+0.345619126
+0.375745511
+0.188760044
+0.159877247
+0.13916421
+0.128592586
+0.121887094
+0.124527499
+0.132808872
+0.171251419
+0.201904936
+0.231221636
+0.260924064
+0.304117685
+0.344101581
+0.402971283
+0.242408257
+0.171260326
+0.144790488
+0.129789978
+0.119285178
+0.122137823
+0.126126556
+0.15934475
+0.191618314
+0.219054344
+0.248388961
+0.28882749
+0.324586455
+0.37748665
+0.28695906
+0.182201426
+0.156056587
+0.1403766
+0.126334888
+0.127293895
+0.127764257
+0.150367236
+0.185581099
+0.219442781
+0.246039804
+0.284645684
+0.32072668
+0.372373235
+0.362850566
+0.199584947
+0.16426296
+0.146098347
+0.131329764
+0.127083428
+0.129237533
+0.140509778
+0.175527235
+0.21333489
+0.235037924
+0.274681925
+0.312058175
+0.357056632
+0.373401408
+0.203540295
+0.168188829
+0.149571458
+0.132276895
+0.126558846
+0.129641124
+0.147830997
+0.182814132
+0.221839438
+0.246120847
+0.286447866
+0.322952453
+0.376136449
+0.313963532
+0.182378561
+0.148725212
+0.131760074
+0.120392049
+0.117573155
+0.119529449
+0.138734941
+0.16935549
+0.202745195
+0.2257464
+0.262943277
+0.29857693
+0.343708981
+0.365847951
+0.198158756
+0.155779142
+0.138277496
+0.124014639
+0.118310131
+0.118757681
+0.132751165
+0.163855878
+0.198872971
+0.220293663
+0.25614742
+0.291768208
+0.336016462
+0.379663623
+0.243925545
+0.164911604
+0.142389093
+0.12483302
+0.117244146
+0.114730094
+0.127850612
+0.14988677
+0.186511565
+0.209568344
+0.243030705
+0.276863532
+0.319924498
+0.361182815
+0.303674149
+0.172805372
+0.148951149
+0.130796381
+0.123808494
+0.11803232
+0.124253648
+0.139923427
+0.177899205
+0.205341435
+0.235357872
+0.267726956
+0.308905846
+0.351369055
+0.354973779
+0.187375364
+0.157408041
+0.135678861
+0.124953541
+0.118652005
+0.12185793
+0.134906781
+0.169240335
+0.202771082
+0.230735653
+0.263354892
+0.304273054
+0.343055965
+0.362938017
+0.188783952
+0.157786113
+0.136298546
+0.124684949
+0.1171017
+0.120773663
+0.131270963
+0.170750225
+0.200761506
+0.229567689
+0.25924319
+0.301083901
+0.341111911
+0.380504091
+0.202355458
+0.160472351
+0.13687969
+0.125508383
+0.118078414
+0.124639688
+0.131847628
+0.170658663
+0.20174869
+0.22843186
+0.259902093
+0.3024065
+0.343333621
+0.383116997
+0.194176482
+0.159598762
+0.137776093
+0.122941831
+0.117384354
+0.12328282
+0.129351596
+0.167822843
+0.198123081
+0.226045099
+0.257846998
+0.30025604
+0.338063851
+0.394560908
+0.220638352
+0.163454579
+0.138841557
+0.127385042
+0.119400648
+0.121506265
+0.126325255
+0.157065387
+0.190465769
+0.217969144
+0.247632614
+0.286871982
+0.324303389
+0.376595879
+0.282165387
+0.172368813
+0.142920395
+0.128641391
+0.11624639
+0.116303787
+0.119907417
+0.137718385
+0.172138033
+0.202591761
+0.226901139
+0.264896969
+0.29864761
+0.344328723
+0.339862126
+0.181600598
+0.146116006
+0.128229466
+0.115304312
+0.112320887
+0.113938692
+0.130563415
+0.159099285
+0.191995659
+0.214507232
+0.249454639
+0.28229471
+0.327791604
+0.370171427
+0.254183421
+0.15895611
+0.138836089
+0.121360484
+0.115803164
+0.113931296
+0.121957357
+0.142226751
+0.178435039
+0.202944885
+0.233626528
+0.269152005
+0.309401108
+0.349372608
+0.339632649
+0.174068494
+0.147757615
+0.129165035
+0.120586582
+0.114795407
+0.120094656
+0.133290748
+0.16932341
+0.19828631
+0.2262726
+0.258528091
+0.297788448
+0.336198289
+0.368683258
+0.193074509
+0.1562581
+0.133298351
+0.121496526
+0.11293901
+0.118231539
+0.124586097
+0.161263183
+0.191858629
+0.218952214
+0.248871361
+0.288281301
+0.32797348
+0.380831645
+0.258285593
+0.168401123
+0.141461287
+0.130181437
+0.121452516
+0.121613817
+0.125506144
+0.158976839
+0.194123672
+0.223204957
+0.252576137
+0.294001225
+0.33296622
+0.387754482
+0.309647202
+0.187642449
+0.156778931
+0.138589424
+0.123845006
+0.120468457
+0.126023695
+0.15095906
+0.186978962
+0.218816277
+0.248869799
+0.28938312
+0.329388475
+0.383296271
+0.328923998
+0.18343356
+0.155026908
+0.139885825
+0.12734869
+0.124094849
+0.1257863
+0.14161113
+0.176866869
+0.212441826
+0.236461152
+0.275971979
+0.313587707
+0.36335547
+0.37228439
+0.193299197
+0.159529077
+0.142190138
+0.1265376
+0.12239246
+0.122414856
+0.134207516
+0.1633138
+0.200809322
+0.223478863
+0.260135013
+0.297148974
+0.341872434
+0.390527076
+0.263798956
+0.174453859
+0.153400457
+0.134502306
+0.127835303
+0.126209008
+0.134315379
+0.154716337
+0.195340647
+0.224178236
+0.259598661
+0.294799817
+0.339993588
+0.387043029
+0.318164044
+0.178838424
+0.154964408
+0.136599016
+0.128175926
+0.121948088
+0.129258474
+0.146178455
+0.185784177
+0.214494109
+0.244632578
+0.280998626
+0.325201411
+0.366803374
+0.36756363
+0.190358741
+0.161057717
+0.139090829
+0.128112645
+0.121648714
+0.124227922
+0.135003607
+0.173925059
+0.204858577
+0.233168512
+0.266407071
+0.307646119
+0.346985644
+0.394967945
+0.208617468
+0.169632681
+0.146844391
+0.134293192
+0.124466775
+0.125988071
+0.132847366
+0.166832172
+0.199863546
+0.229652277
+0.261088448
+0.302814682
+0.34173176
+0.398492045
+0.239399007
+0.175113336
+0.147585221
+0.134839128
+0.124944586
+0.124964482
+0.127787387
+0.1541866
+0.190303586
+0.219013102
+0.24732512
+0.288022035
+0.324960475
+0.377279529
+0.332099768
+0.191538685
+0.161434331
+0.142469461
+0.128299416
+0.126909057
+0.128570717
+0.149709639
+0.184469287
+0.21983039
+0.245650491
+0.284753247
+0.323384128
+0.375209694
+0.313887032
+0.184440902
+0.154178423
+0.139708848
+0.127846085
+0.125076929
+0.127396815
+0.145937729
+0.181349925
+0.215504159
+0.239618069
+0.279545196
+0.316827801
+0.363662139
+0.348965169
+0.193678625
+0.158911216
+0.142263473
+0.129068372
+0.12463516
+0.12669859
+0.144744609
+0.178880457
+0.215997699
+0.238891666
+0.276880676
+0.315770098
+0.36391719
+0.351784324
+0.192241808
+0.159099757
+0.141485768
+0.124970368
+0.121792203
+0.123875945
+0.140451605
+0.172823607
+0.208736791
+0.231461958
+0.270368099
+0.30653748
+0.352164218
+0.360847255
+0.196583301
+0.162383598
+0.145800229
+0.128583217
+0.122664232
+0.123974122
+0.136043864
+0.164880203
+0.202117235
+0.225315994
+0.26231407
+0.297187936
+0.344260033
+0.387440011
+0.21551593
+0.165019264
+0.145873823
+0.128937695
+0.122321525
+0.121554392
+0.134602151
+0.162322036
+0.201299635
+0.222873973
+0.259486113
+0.29593591
+0.338548025
+0.383005134
+0.219510914
+0.16529093
+0.146881267
+0.131854246
+0.124915941
+0.124333808
+0.134855327
+0.161037771
+0.200900731
+0.22557667
+0.261134961
+0.297053042
+0.341967438
+0.388348341
+0.266156294
+0.175863907
+0.151537394
+0.129173111
+0.12073299
+0.118993102
+0.128243479
+0.149485683
+0.188157763
+0.212153184
+0.245645181
+0.28050462
+0.322223354
+0.366736868
+0.357493938
+0.187815785
+0.161456728
+0.138863801
+0.125451513
+0.119590234
+0.128209782
+0.140945198
+0.179219623
+0.209938142
+0.240452339
+0.273742878
+0.315774267
+0.356650817
+0.33911266
+0.183962677
+0.1557742
+0.136317822
+0.128302022
+0.121037156
+0.127023486
+0.139823068
+0.17914702
+0.209128093
+0.239490572
+0.27197674
+0.314711302
+0.355650926
+0.385366792
+0.202494892
+0.162706827
+0.13526793
+0.12541896
+0.120771636
+0.126496561
+0.142712171
+0.181594978
+0.213274743
+0.242322019
+0.27436246
+0.316544785
+0.357663469
+0.301994377
+0.182621068
+0.159704496
+0.138030939
+0.127707128
+0.123893498
+0.13193534
+0.156492634
+0.196770072
+0.22090841
+0.252713538
+0.289447293
+0.332806385
+0.375462719
+0.237190947
+0.168882687
+0.145953095
+0.128827071
+0.123000012
+0.124354851
+0.141323323
+0.17292517
+0.211750376
+0.233658149
+0.273388662
+0.308184821
+0.35456666
+0.27435621
+0.178348846
+0.147920014
+0.132187683
+0.124162508
+0.123916988
+0.131078156
+0.167451912
+0.202200727
+0.229510354
+0.260805173
+0.303919891
+0.342341502
+0.379942285
+0.208673305
+0.167911859
+0.142169152
+0.12694234
+0.118840498
+0.124629954
+0.134365799
+0.174498914
+0.204035095
+0.232118104
+0.26368313
+0.305206291
+0.343628789
+0.308538049
+0.167201237
+0.144023832
+0.127223277
+0.116713112
+0.114575673
+0.126283489
+0.147738713
+0.184849185
+0.208241797
+0.239049325
+0.27317658
+0.312877615
+0.353185104
+0.250406987
+0.160238193
+0.139949995
+0.121412467
+0.116188426
+0.116731029
+0.124349538
+0.148742823
+0.18398549
+0.204876081
+0.238112454
+0.271302265
+0.311354131
+0.352795263
+0.251109328
+0.164776039
+0.144009666
+0.12604599
+0.117484411
+0.116011032
+0.127735045
+0.153588794
+0.191369418
+0.212654956
+0.245874558
+0.280878789
+0.322168202
+0.355437804
+0.203307807
+0.154973892
+0.13810818
+0.123439022
+0.118757375
+0.119131956
+0.132882577
+0.161791311
+0.198735378
+0.219628053
+0.256849201
+0.291269892
+0.333899299
+0.345542065
+0.187230321
+0.151670052
+0.13231133
+0.117981388
+0.116631862
+0.11565895
+0.130745763
+0.161653604
+0.195928879
+0.218375297
+0.252735884
+0.286114601
+0.329734942
+0.357478942
+0.19366842
+0.16003236
+0.145677889
+0.128997958
+0.124334904
+0.12437006
+0.142030508
+0.173698033
+0.21283381
+0.236843138
+0.275322459
+0.312335327
+0.359557528
+0.303714476
+0.17949301
+0.148471575
+0.132328882
+0.120546951
+0.120442733
+0.127266455
+0.151419063
+0.185406319
+0.215446716
+0.242306554
+0.283792632
+0.318908685
+0.36804239
+0.218677693
+0.167220665
+0.142047904
+0.127427027
+0.118976801
+0.123537095
+0.133663251
+0.170370287
+0.203729056
+0.231090402
+0.263504852
+0.307115349
+0.345399097
+0.373584398
+0.195773776
+0.161258346
+0.13783964
+0.124657194
+0.117889462
+0.123146628
+0.137221362
+0.176796772
+0.204985822
+0.234369764
+0.267115983
+0.307834252
+0.346605759
+0.308884717
+0.17174174
+0.149767873
+0.131229563
+0.120893668
+0.116334156
+0.124714226
+0.142859776
+0.1803891
+0.206098995
+0.2367309
+0.27294497
+0.313898134
+0.353614793
+0.333096492
+0.175745943
+0.151126513
+0.131971957
+0.121318459
+0.116760873
+0.125497452
+0.139303437
+0.179254835
+0.207946852
+0.235898195
+0.272329556
+0.31229085
+0.351876781
+0.335715492
+0.17636693
+0.151938228
+0.133382108
+0.123154962
+0.118266284
+0.12549115
+0.142503892
+0.181418315
+0.207288209
+0.238079645
+0.273496791
+0.313373502
+0.353707607
+0.311737207
+0.171454919
+0.146220179
+0.129836809
+0.123231316
+0.117962796
+0.12736234
+0.149140272
+0.187817039
+0.212383449
+0.24459618
+0.280608689
+0.323383721
+0.365239955
+0.315851825
+0.174082929
+0.147093509
+0.127946765
+0.119736173
+0.115586712
+0.122704963
+0.144421853
+0.180392226
+0.205492123
+0.236801473
+0.271132322
+0.313194232
+0.354657655
+0.339229959
+0.180290769
+0.148945168
+0.129923164
+0.122850745
+0.11737009
+0.12196731
+0.13969203
+0.17632766
+0.205231708
+0.233857944
+0.268329313
+0.307835661
+0.348099974
+0.360381278
+0.18607887
+0.157245238
+0.135042622
+0.123659804
+0.119153156
+0.126096565
+0.137714746
+0.175447976
+0.207026909
+0.236500954
+0.269829515
+0.311880957
+0.352329801
+0.376146318
+0.194184566
+0.160368091
+0.138179068
+0.1261862
+0.120544088
+0.126139793
+0.133830231
+0.173861994
+0.206599203
+0.233992579
+0.26539995
+0.307126863
+0.346247691
+0.383616548
+0.189049743
+0.158527109
+0.140341558
+0.12855218
+0.120190391
+0.125831149
+0.132513361
+0.170269769
+0.201360943
+0.229338953
+0.258407739
+0.2995208
+0.338063297
+0.391904744
+0.224090537
+0.167578478
+0.142975558
+0.130141288
+0.120191902
+0.123087931
+0.129830092
+0.164603855
+0.197732208
+0.226311049
+0.256936287
+0.298718616
+0.335632423
+0.387497887
+0.206713004
+0.158616952
+0.135542828
+0.123930532
+0.120814191
+0.122096686
+0.127169322
+0.157033052
+0.190822966
+0.216366298
+0.246048624
+0.286701895
+0.32171248
+0.370786966
+0.251632299
+0.171882887
+0.146644762
+0.135185382
+0.125176829
+0.126525001
+0.131373887
+0.162882091
+0.19917314
+0.229420255
+0.259841797
+0.299724342
+0.340366206
+0.397655502
+0.234672474
+0.168796963
+0.143243318
+0.127278279
+0.116895613
+0.121311429
+0.130281548
+0.162308709
+0.197448304
+0.224528922
+0.255397128
+0.296492897
+0.334407168
+0.388194083
+0.266683332
+0.174347565
+0.148100016
+0.134017939
+0.122210748
+0.122393872
+0.128367233
+0.155709413
+0.190842914
+0.220216804
+0.248962988
+0.287718975
+0.324314971
+0.377476367
+0.267458069
+0.170996486
+0.145392268
+0.133286172
+0.121951896
+0.123632618
+0.128090464
+0.154167127
+0.186644442
+0.218398947
+0.245722116
+0.286527053
+0.3234081
+0.373483832
+0.286068825
+0.174768606
+0.15073787
+0.136146993
+0.123916314
+0.126945208
+0.13106441
+0.161655794
+0.195204772
+0.224658296
+0.256000772
+0.294314522
+0.332647229
+0.374723358
+0.204368641
+0.166251558
+0.140711141
+0.127929944
+0.119344979
+0.122049134
+0.131176337
+0.167094523
+0.198635226
+0.226097457
+0.25658327
+0.297669247
+0.334653106
+0.38983189
+0.226634174
+0.166404578
+0.141892751
+0.129373636
+0.120038726
+0.12411772
+0.130607433
+0.162487771
+0.200631572
+0.22697334
+0.256797124
+0.298171671
+0.337293819
+0.392811459
+0.24673331
+0.173070161
+0.147413328
+0.131562714
+0.119741941
+0.121879933
+0.127402617
+0.156686276
+0.191411838
+0.219223694
+0.249967907
+0.288973882
+0.326089256
+0.378832593
+0.262935495
+0.174350204
+0.145138835
+0.130809553
+0.120837243
+0.120375949
+0.124943386
+0.154710894
+0.189307971
+0.216188121
+0.244950382
+0.285498215
+0.320494089
+0.371644116
+0.304139996
+0.181202671
+0.149583001
+0.134896432
+0.122466654
+0.121541823
+0.127861478
+0.147649748
+0.183349937
+0.214759819
+0.240841753
+0.279624923
+0.317724612
+0.367668668
+0.33751674
+0.180197277
+0.147497516
+0.129157506
+0.116598511
+0.115505661
+0.11796193
+0.138778002
+0.169601384
+0.202610308
+0.225503954
+0.262541314
+0.29726699
+0.342005964
+0.351449898
+0.191974835
+0.154903829
+0.1380051
+0.123000514
+0.117921155
+0.119274314
+0.133794533
+0.16547499
+0.199610776
+0.220804967
+0.259081165
+0.294057463
+0.337559895
+0.361117284
+0.195970412
+0.154222544
+0.134489113
+0.119962852
+0.11611155
+0.116201653
+0.133337983
+0.163317837
+0.19714587
+0.219410622
+0.255168419
+0.290705854
+0.33524937
+0.377786556
+0.218925007
+0.159578154
+0.138487035
+0.122299337
+0.117944187
+0.117655702
+0.132490293
+0.16137407
+0.197463426
+0.218047474
+0.254065738
+0.290341967
+0.337073213
+0.381998236
+0.218875591
+0.159239677
+0.140735395
+0.123263809
+0.11799737
+0.117988099
+0.132038691
+0.161327932
+0.19834134
+0.219269445
+0.256012443
+0.292663981
+0.336042617
+0.382648038
+0.236639843
+0.167888475
+0.148301967
+0.130676214
+0.123162671
+0.119652145
+0.130340804
+0.161278618
+0.199114204
+0.221801296
+0.257677329
+0.29433163
+0.338765774
+0.384767819
+0.22515381
+0.161853459
+0.139896565
+0.124005529
+0.119020023
+0.120019281
+0.130746899
+0.160051767
+0.197642463
+0.216559502
+0.255616013
+0.289668061
+0.334310433
+0.378572396
+0.230199379
+0.160256093
+0.141230825
+0.125698897
+0.119002007
+0.11729578
+0.132570995
+0.158942155
+0.196867222
+0.219514005
+0.255216602
+0.289210059
+0.334579665
+0.378326896
+0.254862448
+0.166721535
+0.144850264
+0.126485404
+0.121346461
+0.118022286
+0.126484935
+0.157991706
+0.192278283
+0.214294032
+0.250901202
+0.285919751
+0.328111329
+0.373451822
+0.26197554
+0.17164377
+0.148175382
+0.129916926
+0.121405997
+0.118733846
+0.129339746
+0.148843448
+0.187118099
+0.213993838
+0.24593326
+0.279568856
+0.321064823
+0.36236907
+0.278921005
+0.171033525
+0.150204113
+0.130606663
+0.121937142
+0.1191952
+0.131511026
+0.147007957
+0.187828723
+0.214643423
+0.246108737
+0.280540419
+0.324416928
+0.364807962
+0.311355852
+0.180840434
+0.154261463
+0.134000062
+0.123792957
+0.119163643
+0.125221324
+0.146068081
+0.183284728
+0.211122906
+0.242568379
+0.276361738
+0.317962807
+0.360901259
+0.330975505
+0.177343873
+0.150675162
+0.133317786
+0.126520219
+0.12101727
+0.125313985
+0.140400141
+0.178495528
+0.208042017
+0.237721423
+0.270564795
+0.312646954
+0.352765809
+0.379412805
+0.197672262
+0.160583581
+0.136004632
+0.124868788
+0.11838507
+0.124319941
+0.134786315
+0.173650287
+0.204004527
+0.233268367
+0.265045244
+0.305692528
+0.345531387
+0.398003207
+0.209460138
+0.162838819
+0.132737597
+0.121700814
+0.115235534
+0.119722246
+0.129377328
+0.166913091
+0.196369583
+0.223516108
+0.255412049
+0.29635084
+0.3349781
+0.392271216
+0.316043246
+0.193045726
+0.151372414
+0.132055946
+0.122614297
+0.124928018
+0.12952999
+0.1561923
+0.190314722
+0.219487733
+0.249373545
+0.287748205
+0.325415948
+0.373389082
+0.208106426
+0.158354569
+0.134324411
+0.123885848
+0.117988217
+0.119142785
+0.127223723
+0.162784774
+0.193396619
+0.21968029
+0.249679855
+0.290621566
+0.3282828
+0.380326508
+0.271031667
+0.169059022
+0.139572839
+0.125452031
+0.117244845
+0.119779449
+0.123169615
+0.153777814
+0.183983155
+0.214141361
+0.242375531
+0.28051895
+0.317888313
+0.367765851
+0.332419069
+0.182456254
+0.148882726
+0.133014752
+0.120775951
+0.121549797
+0.124910327
+0.139039
+0.174788386
+0.209527524
+0.232066141
+0.27134158
+0.307107163
+0.356232472
+0.375959984
+0.195457658
+0.156227847
+0.13740866
+0.121075275
+0.116774393
+0.116738145
+0.129855321
+0.158254958
+0.193485759
+0.213174831
+0.250788518
+0.284804753
+0.329644599
+0.372693217
+0.283875343
+0.170372726
+0.150141005
+0.133248042
+0.122564376
+0.116801169
+0.124283002
+0.1434338
+0.181762115
+0.206782057
+0.237716976
+0.272060292
+0.313084095
+0.353661287
+0.357593897
+0.181600404
+0.155103188
+0.135968275
+0.122606464
+0.118100585
+0.122566779
+0.130771051
+0.168138442
+0.197695514
+0.22566589
+0.257693296
+0.297715866
+0.336746309
+0.391439472
+0.219755866
+0.168488651
+0.145334777
+0.132124111
+0.121320028
+0.1234037
+0.129451385
+0.166793466
+0.198010155
+0.225777564
+0.256288429
+0.298656023
+0.335014471
+0.391327198
+0.237883252
+0.167842103
+0.143420276
+0.131882297
+0.121829038
+0.121586958
+0.126284659
+0.154059363
+0.189816778
+0.218055068
+0.246812831
+0.285645834
+0.321799131
+0.371388664
+0.245355249
+0.166859884
+0.142213787
+0.128632968
+0.117755344
+0.11792581
+0.122797416
+0.147877674
+0.181896676
+0.210050751
+0.236311828
+0.276331013
+0.309423414
+0.359010138
+0.273633394
+0.156495436
+0.127149347
+0.112924316
+0.10209992
+0.102756683
+0.106556219
+0.127377729
+0.152651632
+0.179256143
+0.201805655
+0.233814057
+0.2637166
+0.305696649
+0.340994597
+0.201573838
+0.143364773
+0.123659759
+0.109945086
+0.105739514
+0.103128246
+0.111745794
+0.136075856
+0.165428926
+0.183228913
+0.212169698
+0.243275459
+0.282301431
+0.315940544
+0.287636523
+0.151653478
+0.128396632
+0.110791278
+0.101536549
+0.100380521
+0.107367206
+0.124250694
+0.153881472
+0.177664615
+0.202552274
+0.233526577
+0.269276029
+0.303033113
+0.288249651
+0.154984118
+0.129737921
+0.111677259
+0.105300777
+0.102565135
+0.106662063
+0.124336948
+0.153245339
+0.177252021
+0.201921611
+0.230535946
+0.266005977
+0.301029501
+0.302320475
+0.158372677
+0.131108586
+0.113523336
+0.107106435
+0.104216784
+0.10869402
+0.123998519
+0.154733139
+0.180144233
+0.206280055
+0.235061262
+0.269731407
+0.308320778
+0.308602442
+0.156776451
+0.129660067
+0.111938358
+0.104055123
+0.101819631
+0.10779289
+0.121931206
+0.152763377
+0.178106347
+0.202370735
+0.232365159
+0.267794515
+0.303702355
+0.274404903
+0.14998326
+0.127852699
+0.111233736
+0.103299823
+0.1020101
+0.109414696
+0.128517274
+0.159894648
+0.181171055
+0.208663582
+0.240819542
+0.277294198
+0.312928555
+0.256665601
+0.147275433
+0.124511597
+0.109593812
+0.10218557
+0.102168383
+0.109794592
+0.129983459
+0.160111372
+0.181883448
+0.209554098
+0.241567041
+0.279850585
+0.313431007
+0.242761716
+0.144700105
+0.12180273
+0.10558074
+0.101467614
+0.10173511
+0.109562463
+0.132044375
+0.162069737
+0.181765903
+0.208416882
+0.239557595
+0.277171198
+0.310940162
+0.228584139
+0.141807801
+0.12306678
+0.10753624
+0.103381187
+0.103935712
+0.115050159
+0.138635759
+0.170012095
+0.189155872
+0.220007267
+0.252044481
+0.290677972
+0.321935352
+0.172354048
+0.130452215
+0.11490381
+0.101737148
+0.10049331
+0.103424628
+0.122249504
+0.144030176
+0.17435387
+0.197018802
+0.229949395
+0.261653177
+0.301338841
+0.327248944
+0.172756706
+0.135508512
+0.119363604
+0.1073775
+0.106051526
+0.109111021
+0.124233336
+0.150129378
+0.183464756
+0.203532743
+0.237814775
+0.272015975
+0.311237952
+0.273959445
+0.150156465
+0.121994461
+0.110008512
+0.100871905
+0.103075525
+0.107254381
+0.130576599
+0.155156874
+0.183399137
+0.20651141
+0.240568084
+0.272240515
+0.313223041
+0.208911228
+0.137742506
+0.117085151
+0.106590485
+0.099813379
+0.104077495
+0.112095419
+0.139460766
+0.166380441
+0.190710619
+0.214750069
+0.252194097
+0.284641154
+0.329970404
+0.190080473
+0.138188598
+0.117418378
+0.109416235
+0.105303681
+0.106876891
+0.112092559
+0.14363369
+0.169040208
+0.193486424
+0.217882538
+0.25297868
+0.289355224
+0.331740288
+0.18803717
+0.13655232
+0.116740475
+0.108215473
+0.106358828
+0.111449601
+0.116044754
+0.14979034
+0.176485071
+0.201294411
+0.228183673
+0.26562411
+0.300638378
+0.313330521
+0.161788481
+0.133579704
+0.114515869
+0.106229198
+0.102953299
+0.108920676
+0.122442078
+0.154049044
+0.18045253
+0.20550468
+0.234313711
+0.270673902
+0.305615779
+0.284802226
+0.152270943
+0.128848202
+0.113006361
+0.108194023
+0.106195921
+0.110993104
+0.132215298
+0.161967392
+0.185072064
+0.214547236
+0.245899936
+0.280885092
+0.31980515
+0.231233968
+0.141520921
+0.124137533
+0.111447997
+0.11051905
+0.111748618
+0.126315216
+0.153454217
+0.187835476
+0.209453917
+0.244112776
+0.278902258
+0.3181994
+0.286187697
+0.157675993
+0.129408307
+0.116919758
+0.107721379
+0.109405682
+0.114088178
+0.139550273
+0.168592219
+0.196695792
+0.223175272
+0.260764463
+0.293654283
+0.339966234
+0.213149092
+0.148570743
+0.12636439
+0.114764788
+0.107037223
+0.110722492
+0.119364474
+0.150398117
+0.180887342
+0.206795212
+0.235079774
+0.274280717
+0.308850573
+0.307147051
+0.160653469
+0.132229585
+0.116480709
+0.110958379
+0.108898873
+0.114999217
+0.135823294
+0.168399421
+0.192432679
+0.221300933
+0.253918104
+0.291818543
+0.329432579
+0.208746397
+0.141437607
+0.124639523
+0.111309941
+0.108074823
+0.108943302
+0.119825361
+0.148151747
+0.180666367
+0.202063199
+0.233540016
+0.266641555
+0.308349921
+0.309905581
+0.166002895
+0.132754431
+0.119154174
+0.108932941
+0.1079929
+0.10950231
+0.124912494
+0.152801177
+0.184107946
+0.203732663
+0.237156544
+0.27022621
+0.311836296
+0.284469116
+0.160574111
+0.129598692
+0.118373563
+0.110642351
+0.112044523
+0.112227228
+0.133429428
+0.16102395
+0.193142535
+0.215565085
+0.251200294
+0.284579904
+0.326561188
+0.2268698
+0.147888587
+0.125177913
+0.115181728
+0.108129624
+0.11007231
+0.114008254
+0.143608691
+0.171890496
+0.196835882
+0.224251708
+0.261918251
+0.293541581
+0.335769162
+0.179963791
+0.137267413
+0.11630948
+0.108690819
+0.10317406
+0.107528749
+0.114862518
+0.144742014
+0.171994666
+0.196649017
+0.222485852
+0.258610328
+0.292239782
+0.329899087
+0.176222434
+0.138158396
+0.118065713
+0.108418377
+0.102895525
+0.106658242
+0.113926752
+0.143893696
+0.17123015
+0.194772637
+0.221534567
+0.258728044
+0.29254682
+0.3160541
+0.166975514
+0.133574705
+0.114782214
+0.105357792
+0.101254609
+0.105751016
+0.116920418
+0.146069456
+0.172328996
+0.197398604
+0.22064443
+0.258373212
+0.293902124
+0.315082248
+0.159304046
+0.129406267
+0.112272142
+0.104322598
+0.1006404
+0.104608688
+0.115794081
+0.146453727
+0.170436837
+0.196331121
+0.22190015
+0.257531511
+0.292681889
+0.326763216
+0.170285434
+0.135972653
+0.118143641
+0.109488636
+0.106390443
+0.112790942
+0.127439055
+0.157426939
+0.187230658
+0.215136017
+0.24425761
+0.284319128
+0.320748137
+0.239183816
+0.142880339
+0.124473832
+0.111399242
+0.106469663
+0.104516352
+0.112883287
+0.136566975
+0.166247885
+0.187045355
+0.216660484
+0.249353078
+0.289417204
+0.324839925
+0.204544532
+0.135257305
+0.118751608
+0.10847704
+0.106617582
+0.106332638
+0.116217681
+0.14283472
+0.174216184
+0.194892926
+0.227183548
+0.261905704
+0.301673895
+0.326119137
+0.170350347
+0.131429021
+0.118038861
+0.106711021
+0.104484016
+0.106495294
+0.121539602
+0.146900095
+0.179341652
+0.199159916
+0.23205428
+0.264600472
+0.304161534
+0.300814698
+0.157881847
+0.126898294
+0.114528695
+0.105442601
+0.106067074
+0.108898135
+0.127076992
+0.153277995
+0.185119769
+0.20669697
+0.23985722
+0.274458182
+0.314953867
+0.27856626
+0.154012418
+0.127107515
+0.116008161
+0.106948005
+0.107423988
+0.110537547
+0.133220414
+0.161627436
+0.190259353
+0.215644637
+0.25059872
+0.283169548
+0.326828432
+0.23229268
+0.141387772
+0.118319545
+0.109736621
+0.105232141
+0.109158764
+0.115494422
+0.14339468
+0.171061449
+0.195422267
+0.22161395
+0.259700709
+0.293174706
+0.330788031
+0.173729391
+0.135419825
+0.117080501
+0.109173298
+0.103592059
+0.10747139
+0.117723202
+0.148758684
+0.174922921
+0.201637985
+0.228454298
+0.266077987
+0.301944823
+0.314777598
+0.161411149
+0.137398295
+0.121544047
+0.113182058
+0.107700922
+0.111778377
+0.123018146
+0.157019378
+0.184567766
+0.210587056
+0.240578906
+0.278770355
+0.31451563
+0.248295749
+0.14538972
+0.126066084
+0.112180927
+0.107616655
+0.107002964
+0.115659066
+0.136753776
+0.168282901
+0.192159144
+0.222272662
+0.253966994
+0.293717329
+0.330713531
+0.198557514
+0.141401749
+0.123998193
+0.109782259
+0.106854011
+0.106769793
+0.119335226
+0.143599903
+0.17671224
+0.196511446
+0.228393641
+0.262218419
+0.304980599
+0.328706064
+0.174628567
+0.135471923
+0.120137668
+0.109122999
+0.10870764
+0.110550275
+0.126486972
+0.154950821
+0.186981661
+0.208747513
+0.242915466
+0.277329873
+0.31801619
+0.288111684
+0.158144799
+0.12896575
+0.117601605
+0.107612394
+0.108486811
+0.113811023
+0.141837639
+0.17205699
+0.198756224
+0.225657071
+0.264496846
+0.297253881
+0.343375086
+0.201263647
+0.14291466
+0.121694325
+0.112564947
+0.107422609
+0.11101861
+0.119424715
+0.152606794
+0.181345746
+0.20718473
+0.234496875
+0.274439609
+0.310555198
+0.325808991
+0.16684216
+0.13715176
+0.118881338
+0.111671522
+0.107225999
+0.11187126
+0.123277489
+0.158144967
+0.184938836
+0.211429012
+0.240094841
+0.278383117
+0.315122503
+0.307128476
+0.16347366
+0.136104902
+0.116796677
+0.10845302
+0.105509614
+0.113271508
+0.132280985
+0.165359735
+0.191489186
+0.218869093
+0.251608368
+0.290421533
+0.328023151
+0.258252047
+0.153021958
+0.131564538
+0.115088365
+0.108105787
+0.107455794
+0.115991743
+0.138727117
+0.172579088
+0.195250609
+0.225615274
+0.260540516
+0.298425674
+0.337156028
+0.209676443
+0.142691712
+0.122776775
+0.109020832
+0.106136229
+0.106941325
+0.119770871
+0.144845647
+0.177121386
+0.196989503
+0.230532312
+0.263503668
+0.304257336
+0.311868974
+0.169845741
+0.135788927
+0.12078706
+0.109344165
+0.109751452
+0.113903856
+0.134559307
+0.161599896
+0.195423535
+0.217999694
+0.253659668
+0.287899452
+0.33185569
+0.304798642
+0.187830706
+0.158093531
+0.144934821
+0.132575946
+0.133565726
+0.140780544
+0.182858834
+0.220955867
+0.251789488
+0.2875629
+0.332251632
+0.381367661
+0.469258733
+0.612850558
+0.915868927