diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge.htm b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge.htm new file mode 100644 index 0000000..08240b0 --- /dev/null +++ b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge.htm @@ -0,0 +1,1757 @@ + + + + +Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
libelium
+ + + + + +
+ + + +
+ +
+ +
+
+
+ +
+
+
    +
  • rss
  • +
  • flickr
  • +
  • twitter
  • +
  • facebook
  • +
  • youtube
  • +
+
+ +
+ + +
+
+
    + +
  • + + English + +
  • +
  • + + Español + +
  • +
+
+ + + +
+
+ +
+ +
+ +

+

+
+ +
+
+
+
+ +
+

+
+ +
+
+
+

Raspberry Pi to Arduino shields connection bridge

+
+
+ +raspberry_arduino_shield
+

The idea behind the Raspberry Pi to Arduino shields connection bridge is to allow to use any of the shields, boards and modules designed for Arduino in Raspberry Pi. It includes also the possibility of connecting digital and analog sensors, using the same pinout of Arduino but with the power and capabilities of Raspberry.

+

In order to make complete the compatibility we have created the arduPi library which allows to use Raspberry with the same code used in Arduino. To do so, we have implemented conversion functions so that you can control in the same way as in Arduino all the I/O interfaces: i2C, SPI, UART, analog, digital, in Raspberry Pi.

+

Let's summarize what we can do using this shield along with the arduPi library:

+
    +
  • Connect any Arduino Wireless module in Raspberry. Some examples: XBee 802.15.4/XBee ZigBee, RFID, NFC, Bluetooth, Bluetooth Pro, Wifi, GPRS, 3G
  • +
  • Connect any sensor (analog 0-5V, digital) to Raspberry Pi with a precession of 16b using the ADC integrated. Connect also complex sensors through i2C and UART buses
  • +
  • Connect any Arduino specific shield such as: Radiation sensor shield, CanBus, Relay shield,...
  • +
  • Connect any electronic module or actuator which works over i2C, SPI, UART
  • +raspberry_arduino_shield +
    +

    NOTE: If you are searching for Wireless Sensor Networks devices (motes) you may be interested in our ready to market sensor platform: Waspmote.

    +
    +
    +

    Article Index

    + + +

    1. The Shield.

    +
      +
    • 8 Digital pins.
    • +
    • Socket for wireless modules.
    • +
    • RX/TX pins.
    • +
    • i2C pins (SDA, SCL).
    • +
    • SPI pins (SCK, MISO, MOSI, CS). Can be used also as GPIO.
    • +
    • 8 channel analog to digital converter.
    • +
    • Switch to enable external power supply.
    • +
    +

    top bottom

    +

    Get the schematics here

    +

    Get the Raspberry Pi to Arduino shields connection bridge here.

    + +

    2. Modules and shields for Raspberry Pi.

    + +
    +

     

    + + + + + + + + + + + + + + + + + + + + + + + +
    GPRS/GSM Quadband Shield for Raspberry Pi
    gprs_quadband_module
    3G + GPS Shield for Raspberry Pi
    Raspberry Pi 3G Shield
    RFID 13.56 MHz/NFC Shield for Raspberry Pi
    RFID 13.56 MHz/NFC Module
    RFID 125 KHz shield for Raspberry Pi
    rfid
    Wifi Module 'Roving RN-XV' shield for Raspberry Pi
    Wifi Module 'Roving RN-XV'
    XBee shield for Raspberry Pi
    xbee_shield
    Bluetooth shield for Raspberry Pi
    bluetooth_module
    Bluetooth PRO shield for Raspberry Pi
    Bluetooth PRO
    GPS shield for Raspberry Pi
    gps
    Geiger Counter - Radiation Sensor Board for Raspberry Pi
    arduino_geiger_board
    +

     

    + +

    3. Raspberry Pi revisions.

    +There are currently two main Raspberry Pi board revisions.
    +
      +
    • Raspberry Pi Revision 1.0
    • +
    • Raspberry Pi Revision 2.0
    • +
    +

    There are slight differences between this two revisions, so a different version of the arduPi library should be used depending of which board revision are you using.

    +In the revision 2.0 the main changes are: +
      +
    • 2 mounting holes added
    • +
    • 2 pin “reset” header added. Labelled P6
    • +
    • GPIO21 was replaced with GPIO27 on the main GPIO header, P1
    • +
    • i2c interfaces has been swapped
    • +
    • Resetable polyfuses were removed
    • +
    • Additional header P5 was added. This made GPIO28, 29, 30 and 31 available as well as providing +5V, +3V3 and two Ground pins
    • +
    +

    3.1 Identifying your board revision

    +Cooking hacks starter kits include the Revision 2.0 of the board.
    +

    Revision 2.0

    +The easiest way to identify your board revision is to check if it has the 2 mounting holes . If this is the case you have the revision 2.0. +

     

    + +

     

    +Revision 2.0 can be identified also checking if: +
      +
    • “P5″ header is present on the underside just below the 26 way P1 header.
    • +
    • “Made in the UK” is printed on the board.
    • +
    +

    Revision 1.0

    +If none of the previous characteristics is present in your board then you have Revision 1.0. +

     

    + +

     

    +

     

    + +

    4. The library: arduPi.

    +

    arduPi is a C++ library that lets you write programs for Raspberry Pi as if you were writing an arduino program. All the functions in order to control Serial port communications, i2C, SPI and GPIO pins are available using the arduino syntax.

    +

    arduPi has been tested in a Raspbian distribution. In order to write a Raspbian image to the SD card you can follow this instructions.

    +
    General Arduino functions:
    +
      +
    • delay()
    • +
    • delayMicroseconds()
    • +
    • pinMode()
    • +
    • digitalWrite()
    • +
    • digitalRead()
    • +
    • analogRead() (On pins from A0 to A7. Example: analogRead(5) will read from A5)
    • +
    • shiftIn()
    • +
    • shiftOut()
    • +
    • attachInterrupt() *
    • +
    • detachInterrupt()
    • +
    +

    [*] We can detect RISING and FALLING interrupts. Any digital pin (from 2 to 13) can be used in attachInterrupt(). So for example if we want to be aware of RISING events on pin 6 we can do attachInterrupt(6,function_to_call,RISING).

    +Serial Library: +
      +
    • available()
    • +
    • begin()
    • +
    • end()
    • +
    • flush()
    • +
    • peek()
    • +
    • print()
    • +
    • println()
    • +
    • read()
    • +
    • readBytes()
    • +
    • readBytesUntil()
    • +
    • find()
    • +
    • findUntil()
    • +
    • parseInt()
    • +
    • parseFloat()
    • +
    • setTimeout()
    • +
    • write()
    • +
    +
    Wire Library: +
      +
    • begin()
    • +
    • requestFrom()
    • +
    • beginTransmission()
    • +
    • endTransmission()
    • +
    • write()
    • +
    • read()
    • +
    +
    SPI Library: +
      +
    • begin()
    • +
    • end()
    • +
    • setBitOrder()
    • +
    • setClockDivider()
    • +
    • setDataMode()
    • +
    • transfer()
    • +
    +
    +
    +

    4.1 Using arduPi library:

    +

    You can find the library (v1.4) here.
    You can find a changelog here.

    +In the library folder you will find 3 files: arduPi.cpp, arduPi.h and arduPi_template.cpp
    The arduPi_template.cpp file is meant to be used as a starting point to create programs with the same behaviour as an arduino program. +

     

    +

     

    +Here you can see the template code: +

     

    +
    Show Code +
    //Include arduPi library
    +#include "arduPi.h"
    +
    +/*********************************************************
    + *  IF YOUR ARDUINO CODE HAS OTHER FUNCTIONS APART FROM  *
    + *  setup() AND loop() YOU MUST DECLARE THEM HERE        *
    + * *******************************************************/
    +
    +/**************************
    + * YOUR ARDUINO CODE HERE *
    + * ************************/
    +
    +int main (){
    +	setup();
    +	while(1){
    +		loop();
    +	}
    +	return (0);
    +}
    +
    +
    +

    As you can see in the main() function the setup() function is called once and then the loop() function is called continiously until the program is forced to finish.
    Either if you are starting to write a new program, or if you have an arduino program written that uses the ported functions you can use the template (ardupi_template.cpp) and put your arduino code where it says: YOUR ARDUINO CODE HERE. Remember that the program you are writing is a C++ program so all the C++ libraries can be used.

    +

    4.2 Enabling the UART port:

    +

    The following steps (based on a clean 2012-07-15-wheezy-raspbian install

    +

    0. Open a terminal on the Raspberry, or connect to Raspberry Pi through SSH.

    1. Make a backup of the /boot/cmdline.txt file.
    sudo cp /boot/cmdline.txt /boot/cmdline_backup.txt

    2. Edit /boot/cmdline.txt file:
    sudo vi /boot/cmdline.txt

    This file contains:
    dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 $

    Remove the parameters that reference the UART serial port (ttyAMA0):
    dwc_otg.lpm_enable=0 console=tty1 $

    3. Comment next line in /etc/inittab:
    T0:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100

    4. Reboot Raspberry Pi
    sudo reboot

    +

    3.3 Compile arduPi library:

    +

    (This step needs to be done on the Raspberry, or using cross-compiling tools for the raspberry in other machine).
    As arduPi is a C++ library we will use g++ to compile it. You can compile the arduPi library to obtain an object file (.o) and use this file to link your program:
    g++ -c arduPi.cpp -o arduPi.o

    +
    +

    4.4 Compile a program that uses arduPi:

    +

    (This step needs to be done on the raspberry, or using cross-compiling tools for the raspberry in other machine).
    If you have already compiled the arduPi library (previous step) you can do:
    g++ -lrt -lpthread my_program.cpp arduPi.o -o my_program

    If arduPi library is not compiled you can just compile both arduPi and your program and link them in one step:
    g++ -lrt -lpthread my_program.cpp arduPi.cpp -o my_program

    The -lrt flag is necesary because the library uses the function clock_gettime (time.h).

    The -lpthread option is needed because attachInterrupt() and detachInterrupt() functions use threads.

    +
    +

    4.5 Running your program

    +

    For running your program you must have the right permissions in order to use GPIO (/dev/mem needs to be accessed in the raspberry). You can run your program with sudo:
    sudo ./my_program

    +

     

    + +

    5. Basic circuits.

    +
    +

    WARNING: GPIO voltage levels are 3.3 V and are not 5 V tolerant. There is no over-voltage protection on the board. Digital inputs use a 3V3 logic level and are not tolerant of 5V levels, such as you might find on a 5V powered Arduino.
    Extreme caution when working with GPIO, you may damage your Raspberry Pi, your equipment and potentially yourself and others. Doing so is at your own risk!

    +
    +More information:
    http://elinux.org/RPi_Low-level_peripherals
    http://elinux.org/RPi_Tutorial_EGHS:GPIO_Protection_Circuits
    +

    5.1 GPIO Input

    +GPIO peripherals vary quite widely. In some cases, they are very simple, a group of pins that can be switched as a group to either input or output. The input and output voltages are typically, though not universally limited to the supply voltage of the device with the GPIOs on, and may be damaged by greater voltages.
    Some GPIOs have 5 V tolerant inputs: even on low supply voltages, the device can accept 5V without damage.
    For Raspberry Pi, we present an examples of how to adapt the voltage level of a 5V sensor measure to prevent possible damage.
    Components for this examples and voltage adaptation circuit can be founded in the Starter Kit for Raspberry Pi (A/V Edition)
    When a GPIO pin is set as an input with a basic push button example, we can have these voltages incompatibility problems.
    This circuit is wrong because when you press the button the GPIO input is connected to 5 volts, so our device may be damaged.
    However, this can be avoided by simply using a resistor in the push-button cable. The value of the resistor is determined by the leakage current of the GPIO pin (the current used by the circuit to read the pin) and the amount of voltage drop it creates as a result. With the 5K resistor we obtain 3.3V in the GPIO input.
    +

    Vgpio = 5V·(10K/(10K+5K)) = 3.3V

    +

    5.2 GPIO Sensor measurement

    +We will have the same problem if we use a sensor operating at 5 volts.
    Here is an example using a PIR sensor.
    As shown in the image, we use the same resistive divider used to adapt voltage level.
    +

    6. ADC.

    +

    The shield includes an ADC of 16b of resolution which allows to connect any sensor to Raspberry with higher precision that Arduino does. The communication between Raspberry and the ADC of the shield is made via i2C.
    The information of each channel can be obtained reading two bytes from i2C, but previously one byte (corresponding to the channel address) should be send through i2C depending of the channel we want to select. Here is a list with the channel addresses:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ChannelAdress
    00xDC
    10x9C
    20xCC
    30x8C
    40xAC
    50xEC
    60xBC
    70xFC
    +

    Here is an example of a program that reads every channel continuously waiting 5 seconds between iterations.
    With a wire connecting the 5V pin with some of the pins of the ADC a value near to 5.000000 should be read.

    +

    All the examples on this guide use the arduPi library.

    +
    Show Code +
    /*
    +*  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
    +*  http://www.libelium.com
    +*
    +*  This program is free software: you can redistribute it and/or modify
    +*  it under the terms of the GNU General Public License as published by
    +*  the Free Software Foundation, either version 3 of the License, or
    +*  (at your option) any later version.
    +*
    +*  This program is distributed in the hope that it will be useful,
    +*  but WITHOUT ANY WARRANTY; without even the implied warranty of
    +*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    +*  GNU General Public License for more details.
    +*
    +*  You should have received a copy of the GNU General Public License
    +*  along with this program.  If not, see .
    +*
    +*  Version 0.1
    +*  Author: Anartz Nuin Jiménez
    +*/
    +
    +
    +//Include arduPi library 
    +#include "arduPi.h" 
    +
    +byte val_0 = 0; 
    +byte val_1 = 0; 
    +byte address = 0x08; 
    +
    +int channel_0 = 0; 
    +int channel_1 = 0; 
    +int channel_2 = 0; 
    +int channel_3 = 0; 
    +int channel_4 = 0; 
    +int channel_5 = 0; 
    +int channel_6 = 0; 
    +int channel_7 = 0; 
    +
    +float analog_0 = 0.0; 
    +float analog_1 = 0.0; 
    +float analog_2 = 0.0; 
    +float analog_3 = 0.0; 
    +float analog_4 = 0.0; 
    +float analog_5 = 0.0; 
    +float analog_6 = 0.0; 
    +float analog_7 = 0.0; 
    +
    +void setup() 
    +{ 
    +  Wire.begin(); // join i2C bus (address optional for master) 
    +} 
    +
    +void loop() 
    +{ 
    +  // channel 0 
    +  Wire.beginTransmission(8); 
    +  Wire.write(byte(0xDC));            
    +  Wire.endTransmission();     
    +  Wire.requestFrom(8,2); 
    +   
    +  val_0 = Wire.read();  // receive high byte (overwrites previous reading) 
    +  val_1 = Wire.read(); 
    +  channel_0 = int(val_0)*16 + int(val_1>>4); 
    +  analog_0 = channel_0 * 5.0 / 4095.0; 
    +  
    +    
    +  printf("Channel 0: digital value = %d", channel_0); 
    +  printf(" analog value = %f\n", analog_0); 
    +  
    +  // channel 1 
    +  Wire.beginTransmission(8); 
    +  Wire.write(byte(0x9C));            
    +  Wire.endTransmission();     
    +  Wire.requestFrom(8,2); 
    +   
    +  val_0 = Wire.read();  // receive high byte (overwrites previous reading) 
    +  val_1 = Wire.read(); 
    +  channel_1 = int(val_0)*16 + int(val_1>>4); 
    +  analog_1 = channel_1 * 5.0 / 4095.0; 
    +  
    +    
    +  printf("Channel 1: digital value = %d", channel_1); 
    +  printf(" analog value = %f\n", analog_1); 
    +  
    +  // channel 2 
    +  Wire.beginTransmission(8); 
    +  Wire.write(byte(0xCC));            
    +  Wire.endTransmission();     
    +  Wire.requestFrom(8,2); 
    +   
    +  val_0 = Wire.read();  // receive high byte (overwrites previous reading) 
    +  val_1 = Wire.read(); 
    +  channel_2 = int(val_0)*16 + int(val_1>>4); 
    +  analog_2 = channel_2 * 5.0 / 4095.0; 
    +  
    +  printf("Channel 2: digital value = %d", channel_2); 
    +  printf(" analog value = %f\n", analog_2); 
    +  
    +  // channel 3 
    +  Wire.beginTransmission(8); 
    +  Wire.write(byte(0x8C));            
    +  Wire.endTransmission();     
    +  Wire.requestFrom(8,2); 
    +   
    +  val_0 = Wire.read();  // receive high byte (overwrites previous reading) 
    +  val_1 = Wire.read(); 
    +  channel_3 = int(val_0)*16 + int(val_1>>4); 
    +  analog_3 = channel_3 * 5.0 / 4095.0; 
    +    
    +  printf("Channel 3: digital value = %d", channel_3); 
    +  printf(" analog value = %f\n", analog_3); 
    +  
    +  // channel 4 
    +  Wire.beginTransmission(8); 
    +  Wire.write(byte(0xAC));            
    +  Wire.endTransmission();     
    +  Wire.requestFrom(8,2); 
    +   
    +  val_0 = Wire.read();  // receive high byte (overwrites previous reading) 
    +  val_1 = Wire.read(); 
    +  channel_4 = int(val_0)*16 + int(val_1>>4); 
    +  analog_4 = channel_4 * 5.0 / 4095.0; 
    +  
    +  printf("Channel 4: digital value = %d", channel_4); 
    +  printf(" analog value = %f\n", analog_4); 
    +  
    +  // channel 5 
    +  Wire.beginTransmission(8); 
    +  Wire.write(byte(0xEC));            
    +  Wire.endTransmission();     
    +  Wire.requestFrom(8,2); 
    +    
    +  val_0 = Wire.read();  // receive high byte (overwrites previous reading) 
    +  val_1 = Wire.read(); 
    +  channel_5 = int(val_0)*16 + int(val_1>>4); 
    +  analog_5 = channel_5 * 5.0 / 4095.0; 
    +  
    +  printf("Channel 5: digital value = %d", channel_5); 
    +  printf(" analog value = %f\n", analog_5); 
    +  
    +  // channel 6 
    +  Wire.beginTransmission(8); 
    +  Wire.write(byte(0xBC));            
    +  Wire.endTransmission();     
    +  Wire.requestFrom(8,2); 
    +   
    +  val_0 = Wire.read();  // receive high byte (overwrites previous reading) 
    +  val_1 = Wire.read(); 
    +  channel_6 = int(val_0)*16 + int(val_1>>4); 
    +  analog_6 = channel_6 * 5.0 / 4095.0; 
    +  
    +  printf("Channel 6: digital value = %d", channel_6); 
    +  printf(" analog value = %f\n", analog_6); 
    +  
    +  // channel 7 
    +  Wire.beginTransmission(8); 
    +  Wire.write(byte(0xFC));            
    +  Wire.endTransmission();     
    +  Wire.requestFrom(8,2); 
    +   
    +  val_0 = Wire.read();  // receive high byte (overwrites previous reading) 
    +  val_1 = Wire.read(); 
    +  channel_7 = int(val_0)*16 + int(val_1>>4); 
    +  analog_7 = channel_7 * 5.0 / 4095.0; 
    +  
    +  printf("Channel 7: digital value = %d", channel_7); 
    +  printf(" analog value = %f\n", analog_7); 
    +  
    +  printf("\n"); 
    +
    +  delay(5000); 
    +
    +} 
    +
    +
    +int main (){ 
    +	setup(); 
    +	while(1){ 
    +		loop(); 
    +	} 
    +	return (0); 
    +}
    +
    +
    +

    Here is the output of this program connecting the 5V pin of Raspberry to the analog input 0:

    +ADC_output +

    7. UART.

    +

    Accessing the UART with arduPi library is as simple as doing it with Arduino.
    You need to include arduPi.h in your code and create an instance of SerialPi class naming it Serial.
    Naming the instance as Serial allows you to use the arduino syntax. (All this is allready done if you use the provided template to create your programs).

    +The functions available are:
    +
      +
    • Serial.available()
    • +
    • Serial.begin()
    • +
    • Serial.end()
    • +
    • Serial.flush()
    • +
    • Serial.peek()
    • +
    • Serial.print()
    • +
    • Serial.println()
    • +
    • Serial.read()
    • +
    • Serial.readBytes()
    • +
    • Serial.readBytesUntil()
    • +
    • Serial.find()
    • +
    • Serial.findUntil()
    • +
    • Serial.parseInt()
    • +
    • Serial.parseFloat()
    • +
    • Serial.setTimeout()
    • +
    • Serial.write()
    • +
    +

    All this functions have the same functionality as the arduino ones. You can find more information at:
    http://arduino.cc/en/Reference/serial
    An example of code that acess the UART can be found in the Raspberry Pi XBee tutorial

    + +

    8. i2C.

    +

    An example of using i2C can be found on the ADC section.
    Here we show another example using the BlinkM RGB i2C controlled led.

    +BlinkM RGB LED
    +

    BlinkM uses a high quality, high power RGB LED and a small AVR microcontroller to allow a user to digitally control an RGB LED over a simple i2C interface.
    In the example we will change the led color using fade transitions and also changing it directly. More information about the LED and the commands we can send to it can be found in the datasheet.

    +Connect the (-) pin of the led with the GND pin of the shield.
    Connect the (+) pin of the led with the 5V pin of the shield.
    Connect the d pin of the led with the SDA pin of the shield.
    Connect the c pin of the led with the SCL pin of the shield. +

     

    +BlinkM RGB LED Red +

    Here is the code:

    +
    Show Code +
    /*
    +*  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
    +*  http://www.libelium.com
    +*
    +*  This program is free software: you can redistribute it and/or modify
    +*  it under the terms of the GNU General Public License as published by
    +*  the Free Software Foundation, either version 3 of the License, or
    +*  (at your option) any later version.
    +*
    +*  This program is distributed in the hope that it will be useful,
    +*  but WITHOUT ANY WARRANTY; without even the implied warranty of
    +*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    +*  GNU General Public License for more details.
    +*
    +*  You should have received a copy of the GNU General Public License
    +*  along with this program.  If not, see .
    +*
    +*  Version 0.1
    +*  Author: Anartz Nuin Jiménez
    +*/
    +
    +
    +//Include arduPi library
    +#include "arduPi.h"
    +
    +
    +void setup(){
    +	Wire.begin();
    +	Wire.beginTransmission(9);
    +	Wire.write('o'); //End the current Light script
    +	Wire.endTransmission();
    +}
    +
    +void loop(){
    +	for (int i=0;i < 5;i++){
    +		Wire.beginTransmission(9);
    +		Wire.write('n'); //Change to color
    +		Wire.write(byte(0xff)); //Red component
    +		Wire.write(byte(0x00)); //Green component
    +		Wire.write(byte(0x00)); //Blue component
    +		Wire.endTransmission();
    +
    +		delay(500);
    +		
    +		Wire.beginTransmission(9);
    +		Wire.write('n'); //Change to color
    +		Wire.write(byte(0x00)); //Red component
    +		Wire.write(byte(0x00)); //Green component
    +		Wire.write(byte(0xff)); //Blue component
    +		Wire.endTransmission();
    +		
    +		delay(500);
    +	}
    +	
    +	for (int i=0;i < 10;i++){
    +		Wire.beginTransmission(9);
    +		Wire.write('c'); //Fade to color
    +		Wire.write(byte(0xff)); //Red component
    +		Wire.write(byte(0x00)); //Green component
    +		Wire.write(byte(0x5a)); //Blue component
    +		Wire.endTransmission();
    +
    +		delay(150);
    +		
    +		Wire.beginTransmission(9);
    +		Wire.write('c'); //Fade to color
    +		Wire.write(byte(0x55)); //Red component
    +		Wire.write(byte(0x20)); //Green component
    +		Wire.write(byte(0x5a)); //Blue component
    +		Wire.endTransmission();
    +
    +		delay(150);
    +	}
    +}
    +
    +int main (){
    +	setup();
    +	while(1){
    +		loop();
    +	}
    +	return (0);
    +}
    +
    +
    +

    This code alternate from red to blue five times and then make some smooth transitions between purplish colors.

    +BlinkM RGB LED transition
    +

    9. SPI.

    +

    It is possible to communicate with SPI devices using the functions provided by arduPi.
    In this example we use the SPI functions for printing messages on the ST7920 LCD12864 (SPI LCD)

    +

    First of all, we need to put the switch of the LCD in SPI mode.
    Now we proceed with the connection between the LCD and the Raspberry Pi to arduino shield :

    +VCC of the LCD to 5v of the shield
    GND of the LCD to GND of the shield
    SCK of the LCD to SCK of the shield
    SID of the LCD to MOSI of the shield
    CS of the LCD to 8 pin of the shield
    +

    As you can see we are using the pin number 8 of the Raspberry Pi shield as chip select. So when we need to select the LCD as the target device for the SPI communication we need to put the 8 pin to HIGH.

    +SPI lcd connection
    +

    Here is the code:

    +
    Show Code +
    /*
    +*  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
    +*  http://www.libelium.com
    +*
    +*  This program is free software: you can redistribute it and/or modify
    +*  it under the terms of the GNU General Public License as published by
    +*  the Free Software Foundation, either version 3 of the License, or
    +*  (at your option) any later version.
    +*
    +*  This program is distributed in the hope that it will be useful,
    +*  but WITHOUT ANY WARRANTY; without even the implied warranty of
    +*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    +*  GNU General Public License for more details.
    +*
    +*  You should have received a copy of the GNU General Public License
    +*  along with this program.  If not, see .
    +*
    +*  Version 0.1
    +*  Author: Anartz Nuin Jiménez
    +*/
    +
    +//Include arduPi library
    +#include "arduPi.h"
    +
    +int latchPin = 8;
    +unsigned char char1[]=" Cooking Hacks  ";
    +unsigned char char2[]="  SPI LCD for   ";
    +unsigned char char3[]="  Raspberry Pi  ";
    +
    +void initialise();
    +void displayString(int X,int Y,unsigned char *ptr,int dat);
    +void writeCommand(int CMD);
    +void writeData(int CMD);
    +void writeByte(int dat);
    +void clear();
    +
    +void setup(){
    +	SPI.begin();
    +	SPI.setBitOrder(MSBFIRST);
    +	SPI.setDataMode(SPI_MODE0);
    +	SPI.setClockDivider(SPI_CLOCK_DIV128);
    +
    +	initialise();
    +}
    +
    +void loop(){
    +	displayString(0,0,char1,16);
    +	delay(2000);
    +	clear();
    +	displayString(1,0,char2,16);
    +	displayString(2,0,char3,16);
    +	delay(2000);
    +	clear();
    +}
    +
    +void initialise(){
    +	pinMode(latchPin, OUTPUT);     
    +	digitalWrite(latchPin, LOW);
    +
    +	delayMicroseconds(80);
    +
    +	writeCommand(0x30);
    +	writeCommand(0x0c);
    +	writeCommand(0x01);
    +	writeCommand(0x06);
    +}
    +
    +
    +void displayString(int X,int Y,unsigned char *ptr,int dat){
    +	int i;
    +
    +	switch(X){
    +		case 0:  Y|=0x80;break;
    +
    +		case 1:  Y|=0x90;break;
    +
    +		case 2:  Y|=0x88;break;
    +
    +		case 3:  Y|=0x98;break;
    +
    +		default: break;
    +	}
    +
    +	writeCommand(Y);
    +
    +	for(i=0;i < dat;i++){ 
    +		writeData(ptr[i]);
    +	}
    +
    +}
    +
    +void writeCommand(int CMD){
    +	int H_data,L_data;
    +	H_data = CMD;
    +	H_data &= 0xf0;
    +	L_data = CMD;
    +	L_data &= 0x0f;
    +	L_data <<= 4;
    +	writeByte(0xf8);
    +	writeByte(H_data);
    +	writeByte(L_data);
    +}
    +
    +void writeData(int CMD){
    +	int H_data,L_data;
    +	H_data = CMD;
    +	H_data &= 0xf0;
    +	L_data = CMD;
    +	L_data &= 0x0f;
    +	L_data <<= 4;
    +	writeByte(0xfa);
    +	writeByte(H_data);
    +	writeByte(L_data);
    +}
    +
    +void writeByte(int dat){
    +	digitalWrite(latchPin, HIGH);
    +	delayMicroseconds(80);
    +	SPI.transfer(dat);
    +	digitalWrite(latchPin, LOW);
    +}
    +
    +void clear(){
    +	writeCommand(0x30);
    +	writeCommand(0x01);
    +}
    +
    +
    +int main (){
    +	setup();
    +	while(1){
    +		loop();
    +	}
    +	return (0);
    +}
    +
    +
    +

    This program will show the messages "Cooking Hacks" and "SPI LCD for Raspberry Pi" with a delay of 2 seconds in between.

    +SPI lcd for raspberry
    SPI lcd for raspberry
    +

    10. Support.

    +

    Get help in the specific section created in our Forum.

    + +

    11. Get the shield and kits.

    +
    + +

    Raspberry Pi kits

    +

     

    + +

     

    +

    Raspberry Pi shields

    +

     

    + +

     

    +
    +
     
    + +
+
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/-vXAXn9Iqy1.js b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/-vXAXn9Iqy1.js new file mode 100644 index 0000000..d0c0859 --- /dev/null +++ b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/-vXAXn9Iqy1.js @@ -0,0 +1,22 @@ +/*1365392748,178142527*/ + +if (self.CavalryLogger) { CavalryLogger.start_js(["4ZPFB"]); } + +__d("legacy:fbdesktop-detect",["FBDesktopDetect"],function(a,b,c,d){a.FbDesktopDetect=b('FBDesktopDetect');},3); +__d("IntlUtils",["AsyncRequest","Cookie","goURI"],function(a,b,c,d,e,f){var g=b('AsyncRequest'),h=b('Cookie'),i=b('goURI'),j={setXmode:function(k){(new g()).setURI('/ajax/intl/save_xmode.php').setData({xmode:k}).setHandler(function(){document.location.reload();}).send();},setAmode:function(k){new g().setURI('/ajax/intl/save_xmode.php').setData({amode:k,app:false}).setHandler(function(){document.location.reload();}).send();},setLocale:function(k,l,m,n){if(!m)m=k.options[k.selectedIndex].value;j.saveLocale(m,true,null,l,n);},saveLocale:function(k,l,m,n,o){new g().setURI('/ajax/intl/save_locale.php').setData({aloc:k,source:n,app_only:o}).setHandler(function(p){if(l){document.location.reload();}else i(m);}).send();},setLocaleCookie:function(k,l){h.set('locale',k,7*24*3600000);i(l);}};e.exports=j;}); +__d("legacy:intl-base",["IntlUtils"],function(a,b,c,d){var e=b('IntlUtils');a.intl_set_xmode=e.setXmode;a.intl_set_amode=e.setAmode;a.intl_set_locale=e.setLocale;a.intl_save_locale=e.saveLocale;a.intl_set_cookie_locale=e.setLocaleCookie;},3); +__d("legacy:onload-action",["OnloadHooks"],function(a,b,c,d){var e=b('OnloadHooks');a._onloadHook=e._onloadHook;a._onafterloadHook=e._onafterloadHook;a.runHook=e.runHook;a.runHooks=e.runHooks;a.keep_window_set_as_loaded=e.keepWindowSetAsLoaded;},3); +__d("legacy:animation",["Animation"],function(a,b,c,d){a.Animation=b('Animation');},3); +__d("LoginFormController",["Event","ge","Button"],function(a,b,c,d,e,f){var g=b('Event'),h=b('ge'),i=b('Button');f.init=function(j,k){g.listen(j,'submit',function(){i.setEnabled(k,false);i.setEnabled.curry(k,true).defer(15000);});var l=h('lgnjs');if(l)l.value=parseInt(Date.now()/1000,10);};}); +__d("ClickRefUtils",[],function(a,b,c,d,e,f){var g={get_intern_ref:function(h){if(!!h){var i={profile_minifeed:1,gb_content_and_toolbar:1,gb_muffin_area:1,ego:1,bookmarks_menu:1,jewelBoxNotif:1,jewelNotif:1,BeeperBox:1,navSearch:1};for(var j=h;j&&j!=document.body;j=j.parentNode){if(!j.id||typeof j.id!=='string')continue;if(j.id.substr(0,8)=='pagelet_')return j.id.substr(8);if(j.id.substr(0,8)=='box_app_')return j.id;if(i[j.id])return j.id;}}return '-';},get_href:function(h){var i=(h.getAttribute&&(h.getAttribute('ajaxify')||h.getAttribute('data-endpoint'))||h.action||h.href||h.name);return typeof i==='string'?i:null;},should_report:function(h,i){if(i=='FORCE')return true;if(i=='INDIRECT')return false;return h&&(g.get_href(h)||(h.getAttribute&&h.getAttribute('data-ft')));}};e.exports=g;}); +__d("setUECookie",["Env"],function(a,b,c,d,e,f){var g=b('Env');function h(i){if(!g.no_cookies){var j=0;if(a.afterloaded){j=2;}else if(a.loaded)j=1;document.cookie="act="+encodeURIComponent(i+":"+j)+"; path=/; domain="+window.location.hostname.replace(/^.*(\.facebook\..*)$/i,'$1');}}e.exports=h;}); +__d("ClickRefLogger",["Arbiter","EagleEye","ClickRefUtils","collectDataAttributes","copyProperties","ge","setUECookie","$"],function(a,b,c,d,e,f){var g=b('Arbiter'),h=b('EagleEye'),i=b('ClickRefUtils'),j=b('collectDataAttributes'),k=b('copyProperties'),l=b('ge'),m=b('setUECookie'),n=b('$');function o(q){if(!l('content'))return [0,0,0,0];var r=n('content'),s=a.Vector2?a.Vector2.getEventPosition(q):{x:0,y:0};return [s.x,s.y,r.offsetLeft,r.clientWidth];}function p(q,r,event,s){var t=(!a.ArbiterMonitor)?'r':'a',u=[0,0,0,0],v,w,x;if(!!event){v=event.type;if(v=='click'&&l('content'))u=o(event);var y=0;event.ctrlKey&&(y+=1);event.shiftKey&&(y+=2);event.altKey&&(y+=4);event.metaKey&&(y+=8);if(y)v+=y;}if(!!r)w=i.get_href(r);var z=[];if(a.ArbiterMonitor){x=a.ArbiterMonitor.getInternRef(r);z=a.ArbiterMonitor.getActFields();}var aa=j(!!event?(event.target||event.srcElement):r,['ft','gt']);k(aa.ft,s.ft||{});k(aa.gt,s.gt||{});if(typeof(aa.ft.ei)==='string')delete aa.ft.ei;var ba=[q._ue_ts,q._ue_count,w||'-',q._context,v||'-',x||i.get_intern_ref(r),t,a.URI?a.URI.getRequestURI(true,true).getUnqualifiedURI().toString():location.pathname+location.search+location.hash,aa].concat(u).concat(z);return ba;}g.subscribe("ClickRefAction/new",function(q,r){if(i.should_report(r.node,r.mode)){var s=p(r.cfa,r.node,r.event,r.extra_data);m(r.cfa.ue);h.log('act',s);if(window.chromePerfExtension)window.postMessage({clickRef:JSON.stringify(s)},window.location.origin);}});}); +__d("PostLoadJS",["Bootloader","Run","emptyFunction"],function(a,b,c,d,e,f){var g=b('Bootloader'),h=b('Run'),i=b('emptyFunction');function j(l,m){h.onAfterLoad(function(){g.loadModules.call(g,[l],m);});}var k={loadAndRequire:function(l){j(l,i);},loadAndCall:function(l,m,n){j(l,function(o){o[m].apply(o,n);});}};e.exports=k;}); +__d("QuicklingAugmenter",["URI"],function(a,b,c,d,e,f){var g=b('URI'),h=[],i={addHandler:function(j){h.push(j);},augmentURI:function(j){var k=[],l=g(j);h.forEach(function(m){var n=m(l);if(!n)return l;k.push(m);l=l.addQueryData(n);});h=k;return l;}};e.exports=i;}); +__d("Quickling",["AjaxPipeRequest","Arbiter","Class","CSSClassTransition","DocumentTitle","DOM","ErrorUtils","HTML","OnloadHooks","PageTransitions","QuicklingAugmenter","Run","URI","UserAgent","copyProperties","goOrReplace","isEmpty","QuicklingConfig"],function(a,b,c,d,e,f){var g=b('AjaxPipeRequest'),h=b('Arbiter'),i=b('Class'),j=b('CSSClassTransition'),k=b('DocumentTitle'),l=b('DOM'),m=b('ErrorUtils'),n=b('HTML'),o=b('OnloadHooks'),p=b('PageTransitions'),q=b('QuicklingAugmenter'),r=b('Run'),s=b('URI'),t=b('UserAgent'),u=b('copyProperties'),v=b('goOrReplace'),w=b('isEmpty'),x=b('QuicklingConfig'),y=x.version,z=x.sessionLength,aa=new RegExp(x.inactivePageRegex),ba=0,ca,da='',ea={isActive:function(){return true;},isPageActive:function(la){if(la=='#')return false;la=new s(la);if(la.getDomain()&&la.getDomain()!=s().getDomain())return false;if(la.getPath()=='/l.php'){var ma=la.getQueryData().u;if(ma){ma=s(unescape(ma)).getDomain();if(ma&&ma!=s().getDomain())return false;}}var na=la.getPath(),oa=la.getQueryData();if(!w(oa))na+='?'+s.implodeQuery(oa);return !aa.test(na);},getLoadCount:function(){return ba;}};function fa(la){la=la||'Facebook';k.set(la);if(t.ie()){da=la;if(!ca)ca=window.setInterval(function(){var ma=da,na=k.get();if(ma!=na)k.set(ma);},5000,false);}}function ga(la){var ma=document.getElementsByTagName('link');for(var na=0;na=z;}function ja(la){g.setCurrentRequest(null);if(ia())return false;la=q.augmentURI(la);if(!ea.isPageActive(la))return false;window.ExitTime=Date.now();r.__removeHook('onafterloadhooks');r.__removeHook('onloadhooks');o.runHooks('onleavehooks');h.inform('onload/exit',true);new ha(la).setCanvasId('content').send();return true;}function ka(la){var ma=window[la];function na(oa,pa,qa){if(typeof oa!=='function')oa=eval.bind(null,oa);var ra=ma(m.guard(oa),pa);if(pa>0)if(qa!==false)r.onLeave(function(){clearInterval(ra);});return ra;}window[la]=na;}r.onAfterLoad(function la(){ka('setInterval');ka('setTimeout');p.registerHandler(ja,1);});e.exports=a.Quickling=ea;}); +__d("StringTransformations",[],function(a,b,c,d,e,f){e.exports={unicodeEscape:function(g){return g.replace(/[^A-Za-z0-9\-\.\:\_\$\/\+\=]/g,function(h){var i=h.charCodeAt().toString(16);return '\\u'+('0000'+i.toUpperCase()).slice(-4);});},unicodeUnescape:function(g){return g.replace(/(\\u[0-9A-Fa-f]{4})/g,function(h){return String.fromCharCode(parseInt(h.slice(2),16));});}};}); +__d("TimeSpentLogger",["Arbiter","Banzai","CSS","ClickRefUtils","DOMEventListener","ScriptPath","UserActivity","collectDataAttributes","copyProperties"],function(a,b,c,d,e,f){var g=b('Arbiter'),h=b('Banzai'),i=b('CSS'),j=b('ClickRefUtils'),k=b('DOMEventListener'),l=b('ScriptPath'),m=b('UserActivity'),n=b('collectDataAttributes'),o=b('copyProperties'),p=[m.getLastInformTime(),0],q=m.getLastInformTime(),r={tos_seq:0,tos_cumulative:0,transport_cause:null,buenopath:null,page_token:null,elements:0,uact_tos:null,client_time:null},s=100,t=100,u=10*1000,v=3*1000,w=1,x=2,y=4,z=8,aa={};m.subscribe(function(ia,ja){var ka=p.length-1;q=ja.last_inform;if(ja.idlenesss)fa('array_limit_reached');p.push(ja.idleness,0);}});function ba(ia){var ja=0;if(document.getElementById('boulder_fixed_header'))ja=ja|w;if(i.hasClass(document.body,'timelineLayout')){ja=ja|y;var ka=document.getElementById('pagelet_main_column_personal');if(ka&&ka.getAttribute('data-referrer')==='pagelet_main_column_personal_timeline')ja=ja|x;if(i.hasClass(document.body,'pagesTimelineLayout'))ja=ja|z;}return ja;}function ca(ia){var ja=ba(),ka=l.getScriptPath(),la=l.getCategoryToken();r.uact_tos=p;if(ka){r.buenopath=ka.substring(0,t);}else r.buenopath='';if(la){r.page_token=la;}else r.page_token='';r.elements=ja;r.transport_cause=ia;r.client_time=Date.now();}function da(){r.tos_seq+=1;p=[q,0];}var ea={store:true,delay:3000,retry:true};function fa(ia){ca(ia);if(h.isEnabled('time_spent')){g.inform('timespent/tosdataposted',o({},r));h.post('time_spent',o({},r),ea);}da();}function ga(){fa('heartbeat');}function ha(){fa('before_unload');}if(window.top==window.self){k.add(window,'beforeunload',ha);setInterval(function(){if(Date.now()-m.getLastInformTime()>(u-100)&&(p.length>2||p[p.length-1]>0))ga();},u);}g.subscribe("UserAction/new",function(ia,ja){if(j.should_report(ja.node,ja.mode)){var ka=n(ja.node,['gt']),la={iref:j.get_intern_ref(ja.node),gt_ref:ka.ref,nav_section:ka.nav_section};ca('useraction');o(la,r);ja.ua.add_data(la);g.inform('timespent/tosdataposted',o({},r));da();}});e.exports=aa;}); +__d("UserActionHistory",["Arbiter","ClickRefUtils","ScriptPath","throttle"],function(a,b,c,d,e,f){var g=b('Arbiter'),h=b('ClickRefUtils'),i=b('ScriptPath'),j=b('throttle'),k={click:1,submit:1},l=false,m={log:[],len:0},n=j.acrossTransitions(function(){try{l._ua_log=JSON.stringify(m);}catch(q){l=false;}},1000);function o(){try{if(a.sessionStorage){l=a.sessionStorage;l._ua_log&&(m=JSON.parse(l._ua_log));}}catch(q){l=false;}m.log[m.len%10]={ts:Date.now(),path:'-',index:m.len,type:'init',iref:'-'};m.len++;g.subscribe("UserAction/new",function(r,s){var t=s.ua,u=s.node,event=s.event;if(!event||!(event.type in k))return;var v={path:i.getScriptPath(),type:event.type,ts:t._ue_ts,iref:h.get_intern_ref(u)||'-',index:m.len};m.log[m.len++%10]=v;l&&n();});}function p(){return m.log.sort(function(q,r){return (r.ts!=q.ts)?(r.ts-q.ts):(r.index-q.index);});}o();e.exports={getHistory:p};}); +__d("PluginShareButton",["DOMEvent","DOMEventListener","PluginResize","PopupWindow","UserAgent"],function(a,b,c,d,e,f){var g=b('DOMEvent'),h=b('DOMEventListener'),i=b('PluginResize'),j=b('PopupWindow'),k=b('UserAgent'),l={listen:function(m,n){var o=m.href;h.add(m,'click',function(p){new g(p).kill();j.open(o,340,670);});},resize:function(m){var n=k.firefox()||k.ie()>=9?1:0;new i(function(){return m.offsetWidth+m.offsetLeft+n;},function(){return m.offsetHeight+m.offsetTop;}).resize().auto();}};e.exports=l;}); +__d("TinyViewport",["Event","CSS","DOM","debounce"],function(a,b,c,d,e,f){var g=b('Event'),h=b('CSS'),i=b('DOM'),j=b('debounce'),k=j(function(){var l=document.documentElement,m=i.getDocumentScrollElement(),n=l.clientHeight<400||l.clientWidthh)i.className=i.className+' sidebarMode';}};e.exports=g;}); +__d("eprintf",[],function(a,b,c,d,e,f){var g=function(h){var i=Array.prototype.slice.call(arguments).map(function(l){return String(l);}),j=h.split('%s').length-1;if(j!==i.length-1)return g('eprintf args number mismatch: %s',JSON.stringify(i));var k=1;return h.replace(/%s/g,function(l){return String(i[k++]);});};e.exports=g;}); +__d("ex",[],function(a,b,c,d,e,f){var g=function(h){var i=Array.prototype.slice.call(arguments).map(function(k){return String(k);}),j=h.split('%s').length-1;if(j!==i.length-1)return g('ex args number mismatch: %s',JSON.stringify(i));return g._prefix+JSON.stringify(i)+g._suffix;};g._prefix='';e.exports=g;}); +__d("erx",["ex"],function(a,b,c,d,e,f){var g=b('ex'),h=function(i){if(typeof i!=='string')return i;var j=i.indexOf(g._prefix),k=i.lastIndexOf(g._suffix);if(j<0||k<0)return [i];var l=j+g._prefix.length,m=k+g._suffix.length;if(l>=k)return ['erx slice failure: %s',i];var n=i.substring(0,j),o=i.substring(m);i=i.substring(l,k);var p;try{p=JSON.parse(i);p[0]=n+p[0]+o;}catch(q){return ['erx parse failure: %s',i];}return p;};e.exports=h;}); +__d("copyProperties",[],function(a,b,c,d,e,f){function g(h,i,j,k,l,m,n){h=h||{};var o=[i,j,k,l,m],p=0,q;while(o[p]){q=o[p++];for(var r in q)h[r]=q[r];if(q.hasOwnProperty&&q.hasOwnProperty('toString')&&(typeof q.toString!='undefined')&&(h.toString!==q.toString))h.toString=q.toString;}return h;}e.exports=g;}); +__d("Env",["copyProperties"],function(a,b,c,d,e,f){var g=b('copyProperties'),h={start:Date.now()};if(a.Env){g(h,a.Env);a.Env=undefined;}e.exports=h;}); +__d("ErrorUtils",["eprintf","erx","Env"],function(a,b,c,d,e,f){var g=b('eprintf'),h=b('erx'),i=b('Env'),j=[],k=[],l=50,m=window.chrome&&'type' in new Error(),n=/^(\s+at\s)?((\w+)?.*)(\(|@)?.*(https?:[^:]*)(:(\d+))?(:(\d+))?/mg;function o(aa){if(!aa)return;aa=aa.split(/\n\n/)[0];n.lastIndex=0;var ba=[],ca;while(ca=n.exec(aa))ba.push(' at '+(ca[3]||'')+(ca[3]?'(':'')+ca[5]+':'+ca[7]+(ca[9]?':'+ca[9]:'')+(ca[3]?')':''));return ba.length?ba.join('\n'):aa;}function p(aa){if(!aa){return {};}else if(aa._originalError)return aa;var ba=h(aa.message),ca=g.apply(a,ba),da={line:aa.lineNumber||aa.line,column:aa.columnNumber||aa.column,message:ca,messageWithParams:ba,name:aa.name,script:aa.fileName||aa.sourceURL||aa.script,stack:o(aa.stackTrace||aa.stack)};da._originalError=aa;if(aa.framesToPop){var ea=da.stack.split('\n');ea.splice(0,aa.framesToPop);da.stack=ea.join('\n');if(/(\w{3,5}:\/\/[^:]+):(\d+)/.test(ea[0])){da.script=RegExp.$1;da.line=parseInt(RegExp.$2,10);}}if(m&&/(\w{3,5}:\/\/[^:]+):(\d+)/.test(aa.stack)){da.script=RegExp.$1;da.line=parseInt(RegExp.$2,10);}for(var fa in da)(da[fa]==null&&delete da[fa]);return da;}function q(){try{throw new Error();}catch(aa){var ba=p(aa).stack;return ba&&ba.replace(/[\s\S]*__getTrace__.*\n/,'');}}function r(aa,ba){aa=p(aa);!ba;if(k.length>l)k.splice(l/2,1);k.push(aa);for(var ca=0;ca-1;},addClass:function(j,k){j=g(j);if(k)if(j.classList){j.classList.add(k);}else if(!i.hasClass(j,k))j.className=j.className+' '+k;return j;},removeClass:function(j,k){j=g(j);if(k)if(j.classList){j.classList.remove(k);}else if(i.hasClass(j,k))j.className=j.className.replace(new RegExp('(^|\\s)'+k+'(?:\\s|$)','g'),'$1').replace(/\s+/g,' ').replace(/^\s*|\s*$/g,'');return j;},conditionClass:function(j,k,l){return (l?i.addClass:i.removeClass)(j,k);},toggleClass:function(j,k){return i.conditionClass(j,k,!i.hasClass(j,k));},shown:function(j){return !i.hasClass(j,h);},hide:function(j){return i.addClass(j,h);},show:function(j){return i.removeClass(j,h);},toggle:function(j){return i.toggleClass(j,h);},conditionShow:function(j,k){return i.conditionClass(j,h,!k);}};e.exports=i;}); +__d("legacy:css-core",["CSS"],function(a,b,c,d){a.CSS=b('CSS');},3); +__d("legacy:dom-core",["$","ge"],function(a,b,c,d){a.$=b('$');a.ge=b('ge');},3); +__d("Parent",["CSS"],function(a,b,c,d,e,f){var g=b('CSS'),h={byTag:function(i,j){j=j.toUpperCase();while(i&&i.nodeName!=j)i=i.parentNode;return i;},byClass:function(i,j){while(i&&!g.hasClass(i,j))i=i.parentNode;return i;},byAttribute:function(i,j){while(i&&(!i.getAttribute||!i.getAttribute(j)))i=i.parentNode;return i;}};e.exports=h;}); +__d("legacy:parent",["Parent"],function(a,b,c,d){a.Parent=b('Parent');},3); +__d("emptyFunction",["copyProperties"],function(a,b,c,d,e,f){var g=b('copyProperties');function h(j){return function(){return j;};}function i(){}g(i,{thatReturns:h,thatReturnsFalse:h(false),thatReturnsTrue:h(true),thatReturnsNull:h(null),thatReturnsThis:function(){return this;},thatReturnsArgument:function(j){return j;},mustImplement:function(j,k){return function(){};}});e.exports=i;}); +__d("legacy:emptyFunction",["emptyFunction"],function(a,b,c,d){a.emptyFunction=b('emptyFunction');},3); +__d("isEmpty",[],function(a,b,c,d,e,f){function g(h){if(Array.isArray(h)){return h.length===0;}else if(typeof h==='object'){for(var i in h)return false;return true;}else return !h;}e.exports=g;}); +__d("CSSLoader",["isEmpty"],function(a,b,c,d,e,f){var g=b('isEmpty'),h=20,i=5000,j,k,l={},m=[],n,o={};function p(t){if(k)return;k=true;var u=document.createElement('link');u.onload=function(){j=true;u.parentNode.removeChild(u);};u.rel='stylesheet';u.href='data:text/css;base64,';t.appendChild(u);}function q(){var t,u=[],v=[];if(Date.now()>=n){for(t in o){v.push(o[t].signal);u.push(o[t].error);}o={};}else for(t in o){var w=o[t].signal,x=window.getComputedStyle?getComputedStyle(w,null):w.currentStyle;if(x&&parseInt(x.height,10)>1){u.push(o[t].load);v.push(w);delete o[t];}}for(var y=0;y<\/script\>');}var ga=ca.onload;ca.onload=function(){l('t_layout');ga&&ga();g.inform(h.ONLOAD,true,k);};ca.onbeforeunload=function(){var ha={};g.inform(h.ONBEFOREUNLOAD,ha,k);if(!ha.warn)g.inform('onload/exit',true);return ha.warn;};}var y=g.registerCallback(function(){l('t_onload');g.inform(h.ONLOAD_CALLBACK,true,k);},[h.ONLOAD]),z=g.registerCallback(function(){l('t_domcontent');var ba={timeTriggered:Date.now()};g.inform(h.ONLOAD_DOMCONTENT_CALLBACK,ba,k);},[h.ONLOAD_DOMCONTENT]);x();var aa={onLoad:n,onAfterLoad:o,onLeave:t,onBeforeUnload:p,onUnload:r,onAfterUnload:s,__domContentCallback:z,__onloadCallback:y,__removeHook:v};e.exports=aa;}); +__d("legacy:onload",["Run","OnloadEvent"],function(a,b,c,d){var e=b('Run');a.OnloadEvent=b('OnloadEvent');a.onloadRegister_DEPRECATED=e.onLoad;a.onloadRegister=function(){return e.onLoad.apply(this,arguments);};a.onafterloadRegister_DEPRECATED=e.onAfterLoad;a.onafterloadRegister=function(){return e.onAfterLoad.apply(this,arguments);};a.onleaveRegister=e.onLeave;a.onbeforeunloadRegister=e.onBeforeUnload;a.onunloadRegister=e.onUnload;},3); +__d("wait_for_load",["Bootloader","Run"],function(a,b,c,d,e,f){var g=b('Bootloader'),h=b('Run');function i(l,m){return window.loaded&&m.call(l);}function j(l,m,n){g.loadComponents.call(g,m,n.bind(l));return false;}function k(l,m,n){n=n.bind(l,m);if(window.loaded)return n();switch((m||event).type){case 'load':case 'focus':h.onAfterLoad(n);return;case 'click':var o=l.style,p=document.body.style;o.cursor=p.cursor='progress';h.onAfterLoad(function(){o.cursor=p.cursor='';if(l.tagName.toLowerCase()=='a'){if(false!==n()&&l.href)window.location.href=l.href;}else if(l.click)l.click();});break;}return false;}a.run_if_loaded=i;a.run_with=j;a.wait_for_load=k;},3); +__d("Intl",[],function(a,b,c,d,e,f){var g;function h(j){if(typeof j!='string')return false;return j.match(new RegExp(h.punct_char_class+'['+')"'+"'"+'\u00BB'+'\u0F3B'+'\u0F3D'+'\u2019'+'\u201D'+'\u203A'+'\u3009'+'\u300B'+'\u300D'+'\u300F'+'\u3011'+'\u3015'+'\u3017'+'\u3019'+'\u301B'+'\u301E'+'\u301F'+'\uFD3F'+'\uFF07'+'\uFF09'+'\uFF3D'+'\\s'+']*$'));}h.punct_char_class='['+'.!?'+'\u3002'+'\uFF01'+'\uFF1F'+'\u0964'+'\u2026'+'\u0EAF'+'\u1801'+'\u0E2F'+'\uFF0E'+']';function i(j){if(g){var k=[],l=[];for(var m in g.patterns){var n=g.patterns[m];for(var o in g.meta){var p=new RegExp(o.slice(1,-1),'g'),q=g.meta[o];m=m.replace(p,q);n=n.replace(p,q);}k.push(m);l.push(n);}for(var r=0;r=0);var k='';while(j){if(j&1)k+=i;if((j>>=1))i+=i;}return k;}e.exports=h;}); +__d("BitMap",["copyProperties","repeatString"],function(a,b,c,d,e,f){var g=b('copyProperties'),h=b('repeatString'),i='0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_';function j(){this._bits=[];}g(j.prototype,{set:function(m){this._bits[m]=1;return this;},toString:function(){var m=[];for(var n=0;n=0)l.set(t);define(q,r,function(){this._replaceTransportMarkers(s);return s;}.bind(this));},_handleRequire:function(q,r,s,t){var u=[q].concat(s||[]),v=(r?'__call__':'__requireModule__')+k++;this._moduleIDsToCleanup[v]=[q,r];return define(v,u,function(w){delete this._moduleIDsToCleanup[v];t&&this._replaceTransportMarkers(t);if(r){if(!w[r])throw new TypeError('Module '+q+' has no method '+r);w[r].apply(w,t||[]);}},1,this,1);},_handleInstance:function(q,r,s,t){var u=null;if(r)u=function(v){this._replaceTransportMarkers(s);var w=Object.create(v.prototype);v.apply(w,s);return w;}.bind(this);define(q,r,u,0,null,t);},_handleMarkup:function(q,r,s){define(q,['HTML'],function(t){return t.replaceJSONWrapper(r).getRootNode();},0,null,s);},_handleElement:function(q,r,s,t){var u=[],v=0;if(t){u.push(t);v=1;s++;}define(q,u,function(w){var x=j(r,w);if(!x){var y='Could not find element '+r;throw new Error(y);}return x;},v,null,s);},_replaceTransportMarkers:function(q,r){var s=(typeof r!=='undefined')?q[r]:q,t;if(Array.isArray(s)){for(t=0;t=1)da.requires.push('uipage_onload');var ea=function(){this._informPageletEvent('preonload',da.id);if(this._isRelevantPagelet(da))t(da.onload);this._informPageletEvent('onload',da.id);this.arbiter.inform('pagelet_onload',true,g.BEHAVIOR_EVENT);da.provides&&this.arbiter.inform(da.provides,true,w);}.bind(this),fa=function(){this._isRelevantPagelet(da)&&t(da.onafterload);}.bind(this);this.arbiter.registerCallback(ea,da.requires);this.arbiter.registerCallback(fa,[this.onloadEvt]);}.bind(this),false,da.id);},_downloadDisplayDependenciesAndDisplayPagelet:function(da){this._informPageletEvent('css',da.id);var ea=(da.css||[]).concat(da.displayJS||[]);h.loadResources(ea,function(){var fa=da.display_dependency||[],ga=[];for(var ha=0;ha=0&&((p-j[s]._ue_ts)10)j.shift();g.inform("ClickRefAction/new",{cfa:t,node:m,mode:n,event:event,extra_data:o},g.BEHAVIOR_PERSISTENT);i++;return t;}e.exports=a.clickRefAction=k;}); +__d("trackReferrer",["Parent"],function(a,b,c,d,e,f){var g=b('Parent');function h(i,j){i=g.byAttribute(i,'data-referrer');if(i){var k=/^(?:(?:[^:\/?#]+):)?(?:\/\/(?:[^\/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?/.exec(j)[1]||'';if(!k)return;var l=k+'|'+i.getAttribute('data-referrer'),m=new Date();m.setTime(Date.now()+1000);document.cookie="x-src="+encodeURIComponent(l)+"; "+"expires="+m.toGMTString()+";path=/; domain="+window.location.hostname.replace(/^.*(\.facebook\..*)$/i,'$1');}return i;}e.exports=h;}); +__d("Miny",[],function(a,b,c,d,e,f){var g='Miny1',h={encode:[],decode:{}},i='wxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_'.split('');function j(n){for(var o=h.encode.length;o=4){var aa=n.status;s.cleanup();if(aa==200){if(u)u();s.inform(r.OK);}else{if(v)v(aa);s.inform(r.ERROR);}}};setTimeout(s.cleanup,r.SEND_TIMEOUT,false);var x=m.getAsyncParams(w);x.q=JSON.stringify(t);x.ts=Date.now();x.ph=h.push_phase;if(r.FBTRACE)x.fbtrace=r.FBTRACE;if(r.isEnabled('miny_compression')){var y=Date.now(),z=i.encode(x.q);if(z.length0)q.push(p);p={user:h.getUserID(),page_id:i,trigger:null,time:Date.now(),posts:[]};if(g.isEnabled(m))p.sequence=[];}function t(y){var z=Date.now()+y;if(!o||z=400&&z<600,ca=y.map(function(da){da.posts=da.posts.filter(function(ea){var fa=ba||ea.__meta.options.retry;ea.__meta.retryCount=(ea.__meta.retryCount||0)+1;ea[3]=ea.__meta.retryCount;return fa&&ea.__meta.timestamp>aa;});return da;});ca=ca.filter(function(da){return da.posts.length>0;});q=ca.concat(q);});}var v,w;try{w=a.sessionStorage;}catch(x){}if(w){v={store:function y(){try{s();var aa=h.getUserID(),ba=q.filter(function(da){return da.user==aa;}).map(function(da){da=j({},da);da.posts=da.posts.map(function(ea){return [ea[0],ea[1],ea[2],ea.__meta];});return da;}),ca=JSON.stringify(ba);w.setItem(l,ca);}catch(z){}},restore:function y(){try{var aa=w.getItem(l);if(aa){w.removeItem(l);var ba=h.getUserID(),ca=JSON.parse(aa);ca=ca.filter(function(da){da.posts.forEach(function(ea){ea.__meta=ea.pop();if('retryCount' in ea.__meta)ea[3]=ea.__meta.retryCount;});return da.user==ba;});q=q.concat(ca);}}catch(z){}}};}else v={store:k,restore:k};g.SEND='Banzai:SEND';g.OK='Banzai:OK';g.ERROR='Banzai:ERROR';g.SHUTDOWN='Banzai:SHUTDOWN';g.SEND_TIMEOUT=15000;g.VITAL_WAIT=1000;g.BASIC_WAIT=60000;g.EXPIRY=30*60000;g.VITAL={delay:h.config.MIN_WAIT||g.VITAL_WAIT};g.BASIC={delay:h.config.MAX_WAIT||g.BASIC_WAIT};g.FBTRACE=h.config.fbtrace,g.isEnabled=function(y){return h.config.gks&&h.config.gks[y];};g.post=function(y,z,aa){if(h.config.disabled)return;var ba=h.config.blacklist;if(ba){if(ba&&ba.join&&!ba._regex)ba._regex=new RegExp('^(?:'+ba.join('|')+')');if(ba._regex&&ba._regex.test(y))return;}if(p.user!=h.getUserID())s();var ca=Date.now(),da=[y,z,ca-p.time];aa=aa||{};da.__meta={options:aa,timestamp:ca};p.posts.push(da);var ea=aa.delay;if(ea==null)ea=g.BASIC_WAIT;if(g.isEnabled(m)){if(!(y in r)){r[y]=0;}else r[y]++;p.sequence.push([y,r[y]]);}if(t(ea)||!p.trigger)p.trigger=y;};g.subscribe=h.subscribe;g._testState=function(){return {wad:p,wads:q};};h.onUnload(function(){h.cleanup();h.inform(g.SHUTDOWN);v.store();});s();v.restore();t(g.BASIC.delay);e.exports=g;}); +__d("userAction",["Arbiter","Banzai","copyProperties"],function(a,b,c,d,e,f){var g=b('Arbiter'),h=b('Banzai'),i=b('copyProperties'),j=50,k=[],l={},m={};function n(u,v,w,x,event){var y=u+'/'+v,z=t(x);i(this,{ue:y,_uai_logged:false,_uai_timeout:null,_primary:{},_fallback:{},_default_ua_id:z||'-',_default_action_type:event?event.type:'-',_ts:u,_ns:w,_start_ts:u,_prev_event:'s',_ue_ts:u,_ue_count:v,_data_version:1,_event_version:2,_info_version:2});this._log('ua:n',[1,y]);}var o={store:true,delay:3000,retry:true};i(n.prototype,{_log:function(u,v){var w=l[u]===true,x=m[u],y=x?x[this._ns]:{},z=y?y[this._ua_id]:undefined;if(h.isEnabled('useraction')&&(z!==undefined?z:w))h.post(u,v,o);},_get_action_type:function(){return (this._primary._action_type||this._fallback._action_type||this._default_action_type);},_get_ua_id:function(){return (this._primary._ua_id||this._fallback._ua_id||this._default_ua_id);},_log_uai:function(){var u=[this._info_version,this.ue,this._ns,this._get_ua_id(),this._get_action_type()];this._log('ua:i',u);this._uai_logged=true;this._uai_timeout=null;},uai:function(u,v,w){if(!this._uai_logged){this._uai_timeout&&clearTimeout(this._uai_timeout);this._primary._ua_id=v;this._primary._action_type=u;if(w===undefined){this._log_uai();}else if(w===false){this._uai_logged=true;}else{var x=this;w=w||0;this._uai_timeout=setTimeout(function(){x._log_uai.apply(x);},w);}}return this;},uai_fallback:function(u,v,w){if(!this._uai_logged){var x=this;this._uai_timeout&&clearTimeout(this._uai_timeout);this._fallback._ua_id=v;this._fallback._action_type=u;w=(w===undefined)?j:w;this._uai_timeout=setTimeout(function(){x._log_uai.apply(x);},w);}return this;},add_event:function(u,v,w){v=v||0;var x=(Date.now()-v),y=x-this._ts,z=x-(w?w:this._ue_ts),aa=[this._event_version,this.ue,this._ns,this._get_ua_id(),this._prev_event,u,y,z];if(this._get_ua_id()){this._log('ua:e',aa);this._ts=x;this._prev_event=u;}return this;},add_data:function(u){var v=[this._data_version,this.ue,u];this._log('ua:d',v);return this;}});var p=0,q=0,r=null;function s(u,v,event,w){w=w||{};var x=Date.now();if(!v&&event)v=event.getTarget();if(v&&r)if(x-q10)k.shift();g.inform("UserAction/new",{ua:y,node:v,mode:w.mode,event:event});q=x;p++;return y;}function t(u){if(!u||!u.nodeName)return null;return u.nodeName.toLowerCase();}s.setUATypeConfig=function(u){i(l,u);};s.setCustomSampleConfig=function(u){i(m,u);};s.getCurrentUECount=function(){return p;};e.exports=a.userAction=s;}); +__d("Primer",["function-extensions","Bootloader","CSS","ErrorUtils","Parent","clickRefAction","trackReferrer","userAction"],function(a,b,c,d,e,f){b('function-extensions');var g=b('Bootloader'),h=b('CSS'),i=b('ErrorUtils'),j=b('Parent'),k=b('clickRefAction'),l=b('trackReferrer'),m=b('userAction'),n=null,o=/async(?:-post)?|dialog(?:-post)?|theater|toggle/,p=document.documentElement;function q(t,u){t=j.byAttribute(t,u);if(!t)return;do{var v=t.getAttribute(u);JSON.parse(v).forEach(function(w){var x=t;g.loadModules.call(g,[w[0]],function(y){y[w[1]](x);});});}while(t=j.byAttribute(t.parentNode,u));return false;}p.onclick=i.guard(function(t){t=t||window.event;n=t.target||t.srcElement;var u=q(n,'data-onclick'),v=j.byTag(n,'A');if(!v)return u;var w=v.getAttribute('ajaxify'),x=v.href,y=w||x;if(y){k('a',v,t).coalesce_namespace('primer');var z=m('primer',v,t,{mode:'DEDUP'}).uai_fallback('click');if(a.ArbiterMonitor)a.ArbiterMonitor.initUA(z,[v]);}if(w&&x&&!(/#$/).test(x)){var aa=t.which&&t.which===2,ba=t.altKey||t.ctrlKey||t.metaKey||t.shiftKey;if(aa||ba)return;}l(v,y);var ca=v.rel&&v.rel.match(o);ca=ca&&ca[0];switch(ca){case 'dialog':case 'dialog-post':g.loadModules(['AsyncDialog'],function(da){da.bootstrap(y,v,ca);});break;case 'async':case 'async-post':g.loadModules(['AsyncRequest'],function(da){da.bootstrap(y,v);});break;case 'theater':g.loadModules(['PhotoSnowlift'],function(da){da.bootstrap(y,v);});break;case 'toggle':h.toggleClass(v.parentNode,'openToggler');g.loadModules(['Toggler'],function(da){da.bootstrap(v);});break;default:return u;}return false;});p.onsubmit=i.guard(function(t){t=t||window.event;var u=t.target||t.srcElement;if(u&&u.nodeName=='FORM'&&u.getAttribute('rel')=='async'){k('f',u,t).coalesce_namespace('primer');var v=m('primer',u,t,{mode:'DEDUP'}).uai_fallback('submit');if(a.ArbiterMonitor)a.ArbiterMonitor.initUA(v,[u]);var w=n;g.loadModules(['Form'],function(x){x.bootstrap(u,w);});return false;}});var r=null,s=i.guard(function(t,u){u=u||window.event;r=u.target||u.srcElement;q(r,'data-on'+t);var v=j.byAttribute(r,'data-hover');if(!v)return;switch(v.getAttribute('data-hover')){case 'tooltip':g.loadModules(['Tooltip'],function(w){w.process(v,r);});break;}});p.onmouseover=s.curry('mouseover');if(p.addEventListener){p.addEventListener('focus',s.curry('focus'),true);}else p.attachEvent('onfocusin',s.curry('focus'));}); +__d("ScriptPath",["Banzai","ErrorUtils"],function(a,b,c,d,e,f){var g=b("Banzai"),h=b("ErrorUtils"),i='script_path_change',j={scriptPath:null,categoryToken:null},k={PAGE_LOAD:'load',PAGE_UNLOAD:'unload',TRANSITION:'transition'},l=null,m={},n=0,o=false;function p(x){var y=++n;m[y]=x;return y;}function q(x){if(m[x])delete m[x];}function r(){Object.keys(m).forEach(function(x){h.applyWithGuard(m[x],null,[l]);});}function s(x,y,z){if(!o)return;var aa={source_path:x.scriptPath,source_token:x.categoryToken,dest_path:y.scriptPath,dest_token:y.categoryToken,cause:z};g.post(i,aa);}function t(){s(j,l,k.PAGE_LOAD);}function u(x,y){s(x,y,k.TRANSITION);}function v(){s(l,j,k.PAGE_UNLOAD);}g.subscribe(g.SHUTDOWN,v);var w={set:function(x,y){var z=l;l={scriptPath:x,categoryToken:y};window._script_path=x;if(o)if(z){u(z,l);}else t();r();},startLogging:function(){o=true;if(l)t();},stopLogging:function(){o=false;},getScriptPath:function(){return l?l.scriptPath:undefined;},getCategoryToken:function(){return l?l.categoryToken:undefined;},subscribe:function(x){return p(x);},unsubscribe:function(x){q(x);}};w.CAUSE=k;w.BANZAI_LOGGING_ROUTE=i;e.exports=w;}); +__d("QuicklingPrelude",["ScriptPath"],function(a,b,c,d,e,f){var g=b('ScriptPath'),h=/^(?:(?:[^:\/?#]+):)?(?:\/\/(?:[^\/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?/,i='';window.location.href.replace(h,function(j,k,l,m){var n,o,p,q;n=o=k+(l?'?'+l:'');if(m){m=m.replace(/^(!|%21)/,'');p=m.charAt(0);if(p=='/'||p=='\\')n=m.replace(/^[\\\/]+/,'/');}if(n!=o){q=g.getScriptPath();if(q)document.cookie="rdir="+q+"; path=/; domain="+window.location.hostname.replace(/^.*(\.facebook\..*)$/i,'$1');window.location.replace(i+n);}});}); +__d("removeArrayReduce",[],function(a,b,c,d,e,f){Array.prototype.reduce=undefined;Array.prototype.reduceRight=undefined;}); +__d("SubmitOnEnterListener",["Bootloader","CSS"],function(a,b,c,d,e,f){var g=b('Bootloader'),h=b('CSS');document.documentElement.onkeydown=function(i){i=i||window.event;var j=i.target||i.srcElement,k=i.keyCode==13&&!i.altKey&&!i.ctrlKey&&!i.metaKey&&!i.shiftKey&&h.hasClass(j,'enter_submit');if(k){g.loadModules(['DOM','Input','trackReferrer','Form'],function(l,m,n,o){if(!m.isEmpty(j)){var p=j.form,q=l.scry(p,'.enter_submit_target')[0]||l.scry(p,'[type="submit"]')[0];if(q){var r=o.getAttribute(p,'ajaxify')||o.getAttribute(p,'action');if(r)n(p,r);q.click();}}});return false;}};}); +__d("CommentPrelude",["CSS","Parent","clickRefAction","userAction"],function(a,b,c,d,e,f){var g=b('CSS'),h=b('Parent'),i=b('clickRefAction'),j=b('userAction');function k(o,p){j('ufi',o).uai('click');i('ufi',o,null,'FORCE');return l(o,p);}function l(o,p){var q=h.byTag(o,'form');m(q);var r=g.removeClass.curry(q,'hidden_add_comment');if(window.ScrollAwareDOM){window.ScrollAwareDOM.monitor(q,r);}else r();if(p!==false)(q.add_comment_text_text||q.add_comment_text).focus();return false;}function m(o){var p=g.removeClass.curry(o,'collapsed_comments');if(window.ScrollAwareDOM){window.ScrollAwareDOM.monitor(o,p);}else p();}var n={click:k,expand:l,uncollapse:m};e.exports=n;}); +__d("legacy:ufi-comment-prelude-js",["CommentPrelude"],function(a,b,c,d){var e=b('CommentPrelude');a.fc_click=e.click;a.fc_expand=e.expand;},3); +__d("ScriptMonitor",[],function(a,b,c,d,e,f){var g,h=[],i=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;e.exports={activate:function(){if(!i)return;g=new i(function(j){for(var k=0;k<\/script>');(function(a){if(a){a.onreadystatechange=function(){if(this.readyState=="complete"){WRondomload()}}}})(WRD.getElementById("ClickTaleDefer"))}}}else{WRondomload()}function WRCK(){var a=document.getElementsByTagName("script");if(a.length){var b=a[a.length-1];if(b.src){return b.src}}return false}function ClickTale(e,f,a){function d(){if(typeof ClickTaleScriptSource!="undefined"){if(typeof ClickTaleScriptSource=="string"){return ClickTaleScriptSource}else{return WRE}}if(WRCJ){if(WRCJ.substr(0,23)=="http://s.clicktale.net/"){return"http://s.clicktale.net/"}if(WRCJ.substr(0,33)=="https://clicktale.pantherssl.com/"){return"https://clicktale.pantherssl.com/"}}var g=a.substr(0,3)=="www"?a:"www";if(typeof ClickTaleSSL!="undefined"&&((ClickTaleSSL==1&&location.protocol=="https:")||ClickTaleSSL==2)){return"https://clicktalecdn.sslcs.cdngc.net/"+g+"/"}else{return"http://cdn.clicktale.net/"+g+"/"}}if(WRAX){if(WRAt){WRAw("error3: Monitoring has already started")}throw"CT: Monitoring has already started"}if(ClickTaleIsPlayback()){return}if(f==undefined){f=1}WRA=e;if(!a){a="www"}WRCU=a;if(WRAt){WRAw("note2: preparing to record (ver "+14+"."+2+") for project id "+e+" and partition "+a);if(f==1){WRAw("note3: recording all visitors to this page ("+f+")")}else{WRAw("note3: recording approximately 1 of every "+Math.ceil(1/f)+" visitors to this page ("+f+")")}}if(!WRk){if(WRAt){WRAw("warning2: the current browser is not supported")}return}if(location.protocol=="file:"){if(WRAt){WRAw("warning3: the current protocol is not supported")}return}var c="_"+WRA+"_"+WRCU;if(WRCV){WRCP(WRCV,"apv"+c,ClickTaleCookieExpiryDays)}if(!ClickTaleIgnoreCookieName||!ClickTaleUIDCookieName||!WRCV){if(WRAt){WRAw("warning9: can't record when cookies are not specified")}return}if(WRi(ClickTaleIgnoreCookieName)){if(WRAt){WRAw("warning6: the current machine/user is temporarily disabled for recording")}return}WRK=WRi(ClickTaleUIDCookieName);WRBy=false;if(WRK==null){WRBy=true;if(Math.random()0?a:null}function ClickTaleSetUID(a){if(a>0||a===0||a==="0"){WRh(ClickTaleUIDCookieName,a,ClickTaleCookieExpiryDays)}else{WRCQ(ClickTaleUIDCookieName)}}function ClickTaleGetPID(){return typeof WRA=="number"?WRA:null}function ClickTaleTag(a){WRC({a:"tag",c:a,t:WRH()})}var ClickTaleEvent=ClickTaleTag;function ClickTaleNote(a){WRC({a:"note",c:a,t:WRH()})}function ClickTaleField(b,a){WRC({a:"field",f:b,v:a,t:WRH()})}function ClickTaleExec(a){if(a.length>2000&&WRBW.XDR){WRC({a:"exec",streamval:a,t:WRH()})}else{WRC({a:"exec",c:a,t:WRH()})}}function ClickTaleRegisterFormSubmitSuccess(b){if(WRB1()){WRB4(b)}else{if(b==null){WRC({a:"submitsuccess",i:false,t:WRH()})}}}function ClickTaleRegisterFormSubmitFailure(b){if(WRB1()){WRB5(b)}else{if(b==null){WRC({a:"submitfail",i:false,t:WRH()})}}}function ClickTaleIgnore(a){WRh(ClickTaleUIDCookieName,0,a)}function ClickTaleUploadPage(a,b){if(WRAX){throw"CTUP: Monitoring has already started"}WRAL=true;WRAN=a;WRAO=b;if(WRAM&&WRB1()){WRAZ()}}function ClickTaleSetAllSensitive(){WRBT=true}function ClickTaleGetVersion(){return[14,2]}function ClickTaleSetCustomElementID(a,b){a.ClickTale=a.ClickTale||{};a.ClickTale.CustomID=b}function WRondomload(){if(ClickTaleIsPlayback()||WRAM){return}var b=WRD.getElementById("ClickTaleDefer");if(b){b.parentNode.removeChild(b)}var a=new RegExp('(
]+>)\\s*]+><\/script>\\s*(
)',"i");WRAM=WRD.documentElement.innerHTML.replace(a,"$1$2");WRC({a:"domload",t:WRH()});if(WRB1()){WRAP()}if(WRAL&&WRB1()){WRAZ()}}function WRAv(){if(ClickTaleIsPlayback()){return}WRAy(location.hash.substr(1));WRAy(location.search.substr(1))}function WRAy(d){var c=d.split("&");for(var b=0;b')}WRAu=WRD.getElementById("ClickTaleDebugDump");if(WRAu){WRAu.value=""}WRAt=1;break;case"enable":WRCQ(ClickTaleIgnoreCookieName);var a=WRi(ClickTaleUIDCookieName);if(a==null||a==0){WRh(ClickTaleUIDCookieName,WRAY(),ClickTaleCookieExpiryDays)}break;case"disable":WRh(ClickTaleUIDCookieName,0,ClickTaleCookieExpiryDays);break;case"reset":WRCQ(ClickTaleUIDCookieName);break;case"uaskipcheck":WRBW=WRBY(true);WRAw("warning8: skipping userAgent support check, running as: "+WRBW.a);break;default:ts=c[b].match(/^(\w+)(\(|%28)(.+)(\)|%29)$/i);if(ts&&ts.length==5){var a=decodeURIComponent(ts[3]),e=ts[1];switch(e.toLowerCase()){case"t":ClickTaleTag(a);break;case"u":ClickTaleSetUID(a);break;case"ua":WRk=decodeURIComponent(a);WRAw("warning7: forcing userAgent type: "+WRk);break;case"uao":WRBW=JSON.parse(a);WRAw("warning7: forcing userAgentObj type: "+a);break;case"report":if(/test|subs\d?\d?/.test(a)){WRAt=2;WRCW="http://"+(a=="test"?"ct.test":(a+".app.clicktale.com"))}break;default:WRAw("warning5: unknown parameter in URL: "+e);break}}break}}}function WRAw(a){if(WRAt==1){if(WRAu){WRAu.value+=(a+"\n")}else{if(console&&console.log){console.log("CT: "+a)}else{alert("CT: "+a)}}}if(WRAt==2){try{if(parent&&parent!=window){if(parent.postMessage){parent.postMessage(a,WRCW)}else{alert("CT: Browser doesn't support diagnostics.")}}else{console.log("CT: "+a)}}catch(b){alert("CT: exception trying to communicate diagnostics data.")}}}function WRBY(a){var b=WRBg(navigator.userAgent);if(!a){if(window.ClickTaleSettings&&ClickTaleSettings.CheckAgentSupport){b=ClickTaleSettings.CheckAgentSupport(WRBh,b)}else{b=WRBh(b)}}return b}function WRBh(a){if(!a){return false}if((a.t==a.IE&&a.v>=7&&a.v<=10&&!a.m)||(a.t==a.FF&&a.v>=1.5&&a.v<=22&&!a.m)||(a.t==a.Ch&&a.v>=9&&a.v<=28)||(a.t==a.Sa&&a.v>=5.1&&a.v<6.1)||(a.t==a.WK&&a.v>=534&&a.v<=539)){return a}return false}function WRBr(b){var d={};var e=" "+b+" ";var c=/ (\w+)(?:\/([\w\.]+))? (?:(\([^\)]+\)) )?/img;var a;while((a=c.exec(e))!=null){d[a[1]]={value:a[2],extra:a[3]};c.lastIndex--}return d}function WRBg(b){var c={IE:0,FF:1,Ch:2,Sa:3,Op:4,WK:5};var f=WRBr(b);if(f.Opera){c.t=c.Op;c.v=0;c.a="Op";c.m=false;return c}if(f.Mozilla&&f.Mozilla.extra){var d=f.Mozilla.extra;var a=d.indexOf("MSIE ");if(a!=-1){c.t=c.IE;c.v=parseFloat(d.substr(a+5,3));c.a="IE"+c.v;c.m=(d.indexOf("; Touch")!=-1);if(c.v>=8){c.XDR=true}return c}}if(f.Firefox&&f.Firefox.value){c.t=c.FF;c.v=parseFloat(f.Firefox.value);if(c.v<10){c.a="FF"+(c.v*10)}else{c.a="FF"+c.v}c.m=(f.Mozilla&&f.Mozilla.extra&&f.Mozilla.extra.indexOf("Android; ")!=-1);if(c.v>=3.5){c.XDR=true}return c}if((f.Chrome&&f.Chrome.value)||(f.CriOS&&f.CriOS.value)){c.t=c.Ch;c.v=parseFloat(f.Chrome?f.Chrome.value:f.CriOS.value);c.a="Ch"+c.v;c.m=(!(!f.CriOS))||(f.Mozilla&&f.Mozilla.extra&&f.Mozilla.extra.indexOf("; Android ")!=-1);if(c.v>=9){c.XDR=true}return c}if(f.Safari){if(f.Mozilla&&f.Mozilla.extra&&f.Mozilla.extra.indexOf("; Android ")!=-1&&f.AppleWebKit&&f.AppleWebKit.value){c.t=c.WK;c.v=parseFloat(f.AppleWebKit.value);c.a="WK"+parseInt(c.v);c.m=true;if(c.v>=5){c.XDR=true}return c}if(f.Version&&f.Version.value){c.t=c.Sa;c.v=parseFloat(f.Version.value);c.a="Sa"+c.v;c.m=!(!f.Mobile);if(c.v>=5){c.XDR=true}return c}}return false}function WRl(c,a,b){if(c.attachEvent){c.attachEvent("on"+a,b)}else{if(c.addEventListener){c.addEventListener(a,b,false)}}}var ClickTaleFetchFromWithCookies=(function(){var b=[],e,h,d,a,g,c;a=function(n,m){m=m||b;for(var k=0,j=b.length;k=0)){i+="#"}else{i+="&"}i+=f.constructCookiesParam();return i}};return f})(); +/* + * Copyright 2010-2012 ClickTale Ltd. + */ +(function(){var aP=!0,aO=null,aN=!1;function ar(i,g,j){return i.call.apply(i.bind,arguments)}function aQ(i,g,m){if(!i){throw Error()}if(2p){aB.readyState(this.p,p)}else{if(4==p){var g=[];if(m&&"number"==typeof m.length){for(q=m.length;0aD&&(o.responseText="",o.statusText="responseText is larger than MaxResponseSize");n=aO;i=aN;m=this.urlRule;ag()&&m&&(n=s.getResponseHeader.call(s,"X-ClickTale-IMToken"),i=m.s);aB.g(this.p,o.status,o.statusText,o.headers,o.responseText,n,i)}}}this.A=p;return"function"!=typeof this.onreadystatechange?void 0:this.onreadystatechange.apply(this,[])}ai.prototype.open=function(i,g,o,n,m){var j=this.x;"undefined"==typeof o&&(o=aP);aE&&aE(i,g)==aN?this.skip=aP:aB.open(this.p,g,i.toUpperCase());i=j.open(i,g,o,n,m);this.urlRule=aO;if(ag()){o=aO;n=aH.f;for(m=0;m0||this.getFragment());};l.prototype.valueOf=function(){return this.toString();};l.prototype.isFacebookURI=function(){if(!l.$URI5)l.$URI5=new RegExp('(^|\\.)facebook\\.com([^.]*)$','i');return (!this.isEmpty()&&(!this.getDomain()||l.$URI5.test(this.getDomain())));};l.prototype.getRegisteredDomain=function(){if(!this.getDomain())return '';if(!this.isFacebookURI())return null;var n=this.getDomain().split('.'),o=n.indexOf('facebook');return n.slice(o).join('.');};l.prototype.getUnqualifiedURI=function(){return new l(this).setProtocol(null).setDomain(null).setPort(null);};l.prototype.getQualifiedURI=function(){return new l(this).$URI6();};l.prototype.$URI6=function(){if(!this.getDomain()){var n=l();this.setProtocol(n.getProtocol()).setDomain(n.getDomain()).setPort(n.getPort());}return this;};l.prototype.isSameOrigin=function(n){var o=n||window.location.href;if(!(o instanceof l))o=new l(o.toString());if(this.isEmpty()||o.isEmpty())return false;if(this.getProtocol()&&this.getProtocol()!=o.getProtocol())return false;if(this.getDomain()&&this.getDomain()!=o.getDomain())return false;if(this.getPort()&&this.getPort()!=o.getPort())return false;return true;};l.prototype.go=function(n){i(this,n);};l.prototype.setSubdomain=function(n){var o=this.$URI6().getDomain().split('.');if(o.length<=2){o.unshift(n);}else o[0]=n;return this.setDomain(o.join('.'));};l.prototype.getSubdomain=function(){if(!this.getDomain())return '';var n=this.getDomain().split('.');if(n.length<=2){return '';}else return n[0];};h(l,{getRequestURI:function(n,o){n=n===undefined||n;var p=a.PageTransitions;if(n&&p&&p.isInitialized()){return p.getCurrentURI(!!o).getQualifiedURI();}else return new l(window.location.href);},getMostRecentURI:function(){var n=a.PageTransitions;if(n&&n.isInitialized()){return n.getMostRecentURI().getQualifiedURI();}else return new l(window.location.href);},getNextURI:function(){var n=a.PageTransitions;if(n&&n.isInitialized()){return n.getNextURI().getQualifiedURI();}else return new l(window.location.href);},expression:/(((\w+):\/\/)([^\/:]*)(:(\d+))?)?([^#?]*)(\?([^#]*))?(#(.*))?/,arrayQueryExpression:/^(\w+)((?:\[\w*\])+)=?(.*)/,explodeQuery:function(n){if(!n)return {};var o={};n=n.replace(/%5B/ig,'[').replace(/%5D/ig,']');n=n.split('&');var p=Object.prototype.hasOwnProperty;for(var q=0,r=n.length;q=300&&na<=399){ra="Redirection";qa="Your access to Facebook was redirected or blocked by a third party at this time, please contact your ISP or reload. ";var ta=this.transport.getResponseHeader("Location");if(ta)z(ta,true);sa=true;}else{ra="Oops";qa="Something went wrong. We're working on getting this fixed as soon as we can. You may be able to try again.";}!this.getOption('suppressErrorAlerts');var ua=new i(this);v(ua,{error:na,errorSummary:ra,errorDescription:qa,silentError:sa});this._dispatchErrorResponse(ua,pa);},_dispatchErrorResponse:function(ma,na){var oa=ma.getError();try{this.clearStatusIndicator();var qa=this._sendTimeStamp&&{duration:Date.now()-this._sendTimeStamp,xfb_ip:this._xFbServer||'-'};ma.logError('async_error',qa);if(!this._isRelevant()||oa===1010){this.abort();return;}if(oa==1357008||oa==1357007||oa==1442002||oa==1357001){var ra=oa==1357008||oa==1357007;this.interceptHandler(ma);this._displayServerDialog(ma,ra);}else if(this.initialHandler(ma)!==false){clearTimeout(this.timer);try{na(ma);}catch(sa){this.finallyHandler(ma);throw sa;}this.finallyHandler(ma);}}catch(pa){}},_displayServerDialog:function(ma,na){var oa=ma.getPayload();if(oa.__dialog!==undefined){this._displayServerLegacyDialog(ma,na);return;}var pa=oa.__dialogx;new q().handle(pa);j.loadModules(['ConfirmationDialog'],function(qa){qa.setupConfirmation(ma,this);}.bind(this));},_displayServerLegacyDialog:function(ma,na){var oa=ma.getPayload().__dialog;j.loadModules(['Dialog'],function(pa){var qa=new pa(oa);if(na)qa.setHandler(this._displayConfirmationHandler.bind(this,qa));qa.setCancelHandler(function(){var ra=this.getServerDialogCancelHandler();try{ra&&ra(ma);}catch(sa){throw sa;}finally{this.finallyHandler(ma);}}.bind(this)).setCausalElement(this.relativeTo).show();}.bind(this));},_displayConfirmationHandler:function(ma){this.data.confirmed=1;v(this.data,ma.getFormData());this.send();},setJSONPTransport:function(ma){ma.subscribe('response',this._handleJSONPResponse.bind(this));ma.subscribe('abort',this._handleJSONPAbort.bind(this));this.transport=ma;},_handleJSONPResponse:function(ma,na){this.is_first=(this.is_first===undefined);var oa=this._interpretResponse(na);oa.asyncResponse.is_first=this.is_first;oa.asyncResponse.is_last=this.transport.hasFinished();this.invokeResponseHandler(oa);if(this.transport.hasFinished())delete this.transport;},_handleJSONPAbort:function(){this._invokeErrorHandler();delete this.transport;},_handleXHRResponse:function(ma){var na;if(this.getOption('suppressEvaluation')){na={asyncResponse:new i(this,ma)};}else{var oa=ma.responseText,pa=null;try{var ra=this._unshieldResponseText(oa);try{var sa=(eval)('('+ra+')');na=this._interpretResponse(sa);}catch(qa){pa='excep';na={transportError:'eval() failed on async to '+this.getURI()};}}catch(qa){pa='empty';na={transportError:qa.message};}if(pa){var ta=a.ErrorSignal;ta&&ta.sendErrorSignal('async_xport_resp',[(this._xFbServer?'1008_':'1012_')+pa,this._xFbServer||'-',this.getURI(),oa.length,oa.substr(0,1600)].join(':'));}}this.invokeResponseHandler(na);},_unshieldResponseText:function(ma){var na="for (;;);",oa=na.length;if(ma.length<=oa)throw new Error('Response too short on async to '+this.getURI());var pa=0;while(ma.charAt(pa)==" "||ma.charAt(pa)=="\n")pa++;pa&&ma.substring(pa,pa+oa)==na;return ma.substring(pa+oa);},_interpretResponse:function(ma){if(ma.redirect)return {redirect:ma.redirect};var na=new i(this);if(ma.__ar!=1){na.payload=ma;}else v(na,ma);return {asyncResponse:na};},_onStateChange:function(){try{if(this.transport.readyState==4){ka._inflightCount--;ka._inflightPurge();try{if(typeof(this.transport.getResponseHeader)!=='undefined'&&this.transport.getResponseHeader('X-FB-Debug'))this._xFbServer=this.transport.getResponseHeader('X-FB-Debug');}catch(na){}if(this.transport.status>=200&&this.transport.status<300){ka.lastSuccessTime=Date.now();this._handleXHRResponse(this.transport);}else if(s.webkit()&&(typeof(this.transport.status)=='undefined')){this._invokeErrorHandler(1002);}else if(l.retry_ajax_on_network_error&&ga(this.transport)&&this.remainingRetries>0){this.remainingRetries--;delete this.transport;this.send(true);return;}else this._invokeErrorHandler();if(this.getOption('asynchronous')!==false)delete this.transport;}}catch(ma){if(da())return;delete this.transport;if(this.remainingRetries>0){this.remainingRetries--;this.send(true);}else{!this.getOption('suppressErrorAlerts');var oa=a.ErrorSignal;oa&&oa.sendErrorSignal('async_xport_resp',[1007,this._xFbServer||'-',this.getURI(),ma.message].join(':'));this._invokeErrorHandler(1007);}}},_isMultiplexable:function(){if(this.getOption('jsonp')||this.getOption('useIframeTransport'))return false;if(!this.uri.isFacebookURI())return false;if(!this.getOption('asynchronous'))return false;return true;},handleResponse:function(ma){var na=this._interpretResponse(ma);this.invokeResponseHandler(na);},setMethod:function(ma){this.method=ma.toString().toUpperCase();return this;},getMethod:function(){return this.method;},setData:function(ma){this.data=ma;return this;},_setDataHash:function(){if(this.method!='POST'||this.data.phstamp)return;var ma=r.implodeQuery(this.data).length,na='';for(var oa=0;oaja;},clearStatusIndicator:function(){var ma=this.getStatusElement();if(ma){k.removeClass(ma,'async_saving');k.removeClass(ma,this.statusClass);}},addStatusIndicator:function(){var ma=this.getStatusElement();if(ma){k.addClass(ma,'async_saving');k.addClass(ma,this.statusClass);}},specifiesWriteRequiredParams:function(){return this.writeRequiredParams.every(function(ma){this.data[ma]=this.data[ma]||l[ma]||(y(ma)||{}).value;if(this.data[ma]!==undefined)return true;return false;},this);},setOption:function(ma,na){if(typeof(this.option[ma])!='undefined')this.option[ma]=na;return this;},getOption:function(ma){typeof(this.option[ma])=='undefined';return this.option[ma];},abort:function(){if(this.transport){var ma=this.getTransportErrorHandler();this.setOption('suppressErrorAlerts',true);this.setTransportErrorHandler(w);this._requestAborted=true;this.transport.abort();this.setTransportErrorHandler(ma);}this.abortHandler();},abandon:function(){clearTimeout(this.timer);this.setOption('suppressErrorAlerts',true).setHandler(w).setErrorHandler(w).setTransportErrorHandler(w);if(this.transport){this._requestAborted=true;this.transport.abort();}},setNectarData:function(ma){if(ma){if(this.data.nctr===undefined)this.data.nctr={};v(this.data.nctr,ma);}return this;},setNectarModuleDataSafe:function(ma){if(this.setNectarModuleData)this.setNectarModuleData(ma);return this;},setNectarImpressionIdSafe:function(){if(this.setNectarImpressionId)this.setNectarImpressionId();return this;},setAllowCrossPageTransition:function(ma){this._allowCrossPageTransition=!!ma;if(this.timer)this.resetTimeout(this.timeout);return this;},setAllowCrossOrigin:function(ma){this._allowCrossOrigin=!!ma;return this;},send:function(ma){ma=ma||false;if(!this.uri)return false;!this.errorHandler&&!this.getOption('suppressErrorHandlerWarning');if(this.getOption('jsonp')&&this.method!='GET')this.setMethod('GET');if(this.getOption('useIframeTransport')&&this.method!='GET')this.setMethod('GET');this.timeoutHandler!==null&&(this.getOption('jsonp')||this.getOption('useIframeTransport'));if(!this.getReadOnly()){this.specifiesWriteRequiredParams();if(this.method!='POST')return false;}v(this.data,t.getAsyncParams(this.method));if(!aa(this.context)){v(this.data,this.context);this.data.ajax_log=1;}if(l.force_param)v(this.data,l.force_param);this._setUserActionID();if(this.getOption('bundle')&&this._isMultiplexable()){la.schedule(this);return true;}this.setNewSerial();if(!this.getOption('asynchronous'))this.uri.addQueryData({__s:1});this.finallyHandler=a.async_callback(this.finallyHandler,'final');var na,oa;if(this.method=='GET'||this.rawData){na=this.uri.addQueryData(this.data).toString();oa=this.rawData||'';}else{na=this.uri.toString();this._setDataHash();oa=r.implodeQuery(this.data);}if(this.transport)return false;if(this.getOption('jsonp')||this.getOption('useIframeTransport')){d(['JSONPTransport'],function(sa){var ta=new sa(this.getOption('jsonp')?'jsonp':'iframe',this.uri);this.setJSONPTransport(ta);ta.send();}.bind(this));return true;}var pa=t.create();if(!pa)return false;pa.onreadystatechange=a.async_callback(this._onStateChange.bind(this),'xhr');if(this.uploadProgressHandler&&ea(pa))pa.upload.onprogress=this.uploadProgressHandler.bind(this);if(!ma)this.remainingRetries=this.getOption('retries');if(a.ErrorSignal||a.ArbiterMonitor)this._sendTimeStamp=this._sendTimeStamp||Date.now();this.transport=pa;try{this.transport.open(this.method,na,this.getOption('asynchronous'));}catch(qa){return false;}var ra=l.svn_rev;if(ra)this.transport.setRequestHeader('X-SVN-Rev',String(ra));if(!this.uri.isSameOrigin()&&!this.getOption('jsonp')&&!this.getOption('useIframeTransport')){if(!fa(this.transport))return false;if(this.uri.isFacebookURI())this.transport.withCredentials=true;}if(this.method=='POST'&&!this.rawData)this.transport.setRequestHeader('Content-Type','application/x-www-form-urlencoded');this.addStatusIndicator();this.transport.send(oa);if(this.timeout!==null)this.resetTimeout(this.timeout);ka._inflightCount++;ka._inflightAdd(this);return true;}});function la(){this._requests=[];}v(la,{multiplex:null,schedule:function(ma){if(!la.multiplex){la.multiplex=new la();(function(){la.multiplex.send();la.multiplex=null;}).defer();}la.multiplex.add(ma);}});v(la.prototype,{add:function(ma){this._requests.push(ma);},send:function(){var ma=this._requests;if(!ma.length)return;var na;if(ma.length===1){na=ma[0];}else{var oa=ma.map(function(pa){return [pa.uri.getPath(),r.implodeQuery(pa.data)];});na=new ka('/ajax/proxy.php').setAllowCrossPageTransition(true).setData({data:oa}).setHandler(this._handler.bind(this)).setTransportErrorHandler(this._transportErrorHandler.bind(this));}na.setOption('bundle',false).send();},_handler:function(ma){var na=ma.getPayload().responses;if(na.length!==this._requests.length)return;for(var oa=0;oa60000))w=true;var ha=!ga&&(document.cookie.search(l)>=0),ia=!!h.cookie_header_limit,ja=h.cookie_count_limit||19,ka=h.cookie_header_limit||3950,la=ja-5,ma=ka-1000;while(!this.isEmpty()){var na=y(this.peek());if(ia&&(na.length>ka||(w&&na.length+v>ka))){this.dequeue();continue;}if((ha||ia)&&((document.cookie.length+na.length>ka)||(document.cookie.split(';').length>ja)))break;document.cookie=na;ha=true;this.dequeue();}var oa=Date.now();if(ga||!da&&ha&&((fa>0)&&(Math.min(10*Math.pow(2,fa-1),60000)+eama)||(document.cookie.split(';').length>la))){var pa=new Image(),qa=this,ra=h.tracking_domain||'';da=true;pa.onload=function ua(){da=false;fa=0;qa.clear();};pa.onerror=pa.onabort=function ua(){da=false;ea=Date.now();fa++;};var sa=h.fb_isb?'&fb_isb='+h.fb_isb:'',ta='&__user='+h.user;pa.src=ra+'/ajax/nectar.php?asyncSignal='+(Math.floor(Math.random()*10000)+1)+sa+ta+'&'+(!ga?'':'s=')+oa;}};}t=new z();if(u){var aa=function(){var ca=0,da=ca;function ea(){var ha=sessionStorage.getItem('_e_ids');if(ha){var ia=(ha+'').split(';');if(ia.length==2){ca=parseInt(ia[0],10);da=parseInt(ia[1],10);}}}function fa(){var ha=ca+';'+da;sessionStorage.setItem('_e_ids',ha);}function ga(ha){return '_e_'+((ha!==undefined)?ha:ca++);}this.isEmpty=function(){return da===ca;};this.enqueue=function(ha,ia){var ja=ia?ga(--da):ga();sessionStorage.setItem(ja,ha);fa();};this.dequeue=function(){this.isEmpty();sessionStorage.removeItem(ga(da));da++;fa();};this.peek=function(){var ha=sessionStorage.getItem(ga(da));return ha?(ha+''):ha;};this.clear=t.clear;ea();};t=new aa();}var ba={log:function(ca,da,ea){if(h.no_cookies)return;var fa=[m,Date.now(),ca].concat(da);fa.push(fa.length);function ga(){var ha=JSON.stringify(fa);try{t.enqueue(ha,!!ea);t.clear(!!ea);}catch(ia){if(u&&(ia.code===1000)){t=new z();u=false;ga();}}}ga();},getSessionID:function(){return m;}};e.exports=ba;a.EagleEye=ba;},3); +__d("AdblockDetectorLogging",["AdblockDetector","EagleEye"],function(a,b,c,d,e,f){var g=b('AdblockDetector'),h=b('EagleEye');function i(j){g.assertUnblocked(j,h.log.bind(h,'ads',{event:'ads_blocked'}));}f.assertUnblocked=i;}); +__d("csx",[],function(a,b,c,d,e,f){function g(h){throw new Error('csx(...): Unexpected class selector transformation.');}e.exports=g;}); +__d("HTML",["function-extensions","Bootloader","UserAgent","copyProperties","createArrayFrom","emptyFunction","evalGlobal"],function(a,b,c,d,e,f){b('function-extensions');var g=b('Bootloader'),h=b('UserAgent'),i=b('copyProperties'),j=b('createArrayFrom'),k=b('emptyFunction'),l=b('evalGlobal');function m(n){if(n&&typeof n.__html=='string')n=n.__html;if(!(this instanceof m)){if(n instanceof m)return n;return new m(n);}this._content=n;this._defer=false;this._extra_action='';this._nodes=null;this._inline_js=k;this._rootNode=null;return this;}m.isHTML=function(n){return n&&(n instanceof m||n.__html!==undefined);};m.replaceJSONWrapper=function(n){return n&&n.__html!==undefined?new m(n.__html):n;};i(m.prototype,{toString:function(){var n=this._content||'';if(this._extra_action)n+='Facebook + + + + + + +
+ + + \ No newline at end of file diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/logo.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/logo.png new file mode 100644 index 0000000..76eb07c Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/logo.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/logo_libelium.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/logo_libelium.png new file mode 100644 index 0000000..5d5d5ee Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/logo_libelium.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/parches_presentacion.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/parches_presentacion.png new file mode 100644 index 0000000..3653014 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/parches_presentacion.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/pir.jpg b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/pir.jpg new file mode 100644 index 0000000..d58c353 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/pir.jpg differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rasbperry_shield_bluetooth_b__small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rasbperry_shield_bluetooth_b__small.png new file mode 100644 index 0000000..2763f09 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rasbperry_shield_bluetooth_b__small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rasp_rev1.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rasp_rev1.png new file mode 100644 index 0000000..b9ccdf9 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rasp_rev1.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rasp_rev2.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rasp_rev2.png new file mode 100644 index 0000000..ceaae2c Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rasp_rev2.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_3g__small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_3g__small.png new file mode 100644 index 0000000..3fc08e1 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_3g__small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_and_shield.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_and_shield.png new file mode 100644 index 0000000..dbbd6ad Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_and_shield.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_arduino_shield.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_arduino_shield.png new file mode 100644 index 0000000..9a5681c Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_arduino_shield.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_arduino_shield_gprs_gsm__small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_arduino_shield_gprs_gsm__small.png new file mode 100644 index 0000000..3c7e5dc Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_arduino_shield_gprs_gsm__small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_blinkm_sequence.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_blinkm_sequence.png new file mode 100644 index 0000000..88cd757 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_blinkm_sequence.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_bt_pro_small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_bt_pro_small.png new file mode 100644 index 0000000..b1967b7 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_bt_pro_small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_gps_small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_gps_small.png new file mode 100644 index 0000000..550d526 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_gps_small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_radiation__small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_radiation__small.png new file mode 100644 index 0000000..b64ea6c Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_radiation__small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_rfid_125_small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_rfid_125_small.png new file mode 100644 index 0000000..0c25b4c Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_rfid_125_small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_rfid__small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_rfid__small.png new file mode 100644 index 0000000..f53d013 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_rfid__small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_wifi__small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_wifi__small.png new file mode 100644 index 0000000..3a67baa Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_wifi__small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_xbee_small.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_xbee_small.png new file mode 100644 index 0000000..f992105 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/raspberry_xbee_small.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/right.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/right.png new file mode 100644 index 0000000..30ba785 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/right.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rss_icon.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rss_icon.png new file mode 100644 index 0000000..871e4dd Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/rss_icon.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/spi_lcd_cooking.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/spi_lcd_cooking.png new file mode 100644 index 0000000..6e00ed1 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/spi_lcd_cooking.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/spi_lcd_raspberry.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/spi_lcd_raspberry.png new file mode 100644 index 0000000..33914df Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/spi_lcd_raspberry.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/spi_lcd_wires.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/spi_lcd_wires.png new file mode 100644 index 0000000..677232d Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/spi_lcd_wires.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/twitter_icon.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/twitter_icon.png new file mode 100644 index 0000000..6750247 Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/twitter_icon.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/wrong.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/wrong.png new file mode 100644 index 0000000..aaa057e Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/wrong.png differ diff --git a/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/youtube_icon.png b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/youtube_icon.png new file mode 100644 index 0000000..2e993fb Binary files /dev/null and b/ECG_app project/Reference materials/Cooking Hacks - Documentation - Raspberry Pi to Arduino shields connection bridge_files/youtube_icon.png differ diff --git a/ECG_app project/Reference materials/Design and prototyping of Real time ECG.docx b/ECG_app project/Reference materials/Design and prototyping of Real time ECG.docx new file mode 100644 index 0000000..70e9bc7 Binary files /dev/null and b/ECG_app project/Reference materials/Design and prototyping of Real time ECG.docx differ diff --git a/ECG_app project/Reference materials/arduino_raspberry.png b/ECG_app project/Reference materials/arduino_raspberry.png new file mode 100644 index 0000000..c7ba78a Binary files /dev/null and b/ECG_app project/Reference materials/arduino_raspberry.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications].htm b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications].htm new file mode 100644 index 0000000..a60eaa0 --- /dev/null +++ b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications].htm @@ -0,0 +1,4519 @@ + + + + +e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric / Medical Applications] + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
libelium
+ + + + + +
+ + + +
+ +
+ +
+
+
+ +
+
+
    +
  • rss
  • +
  • flickr
  • +
  • twitter
  • +
  • facebook
  • +
  • youtube
  • +
+
+ +
+ + +
+
+
    + +
  • + + English + +
  • +
  • + + Español + +
  • +
+
+ + + +
+
+ +
+ +
+ +

+

+
+ +
+
+
+
+ +
+

+
+ +
+
+ + + + +
+

e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric / Medical Applications]

+
+
+
e_health_planta
+

The e-Health Sensor Shield allows Arduino and Raspberry Pi users to perform biometric and medical applications where body monitoring is needed by using 9 different sensors: pulse, oxygen in blood (SPO2), airflow (breathing), body temperature, electrocardiogram (ECG), glucometer, galvanic skin response (GSR - sweating), blood pressure (sphygmomanometer) and patient position (accelerometer).

+

This information can be used to monitor in real time the state of a patient or to get sensitive data in order to be subsequently analysed for medical diagnosis. Biometric information gathered can be wirelessly sent using any of the 6 connectivity options available: Wi-Fi, 3G, GPRS, Bluetooth, 802.15.4 and ZigBee depending on the application.

+

If real time image diagnosis is needed a camera can be attached to the 3G module in order to send photos and videos of the patient to a medical diagnosis center.

+

Data can be sent to the Cloud in order to perform permanent storage or visualized in real time by sending the data directly to a laptop or Smartphone. iPhone and Android applications have been designed in order to easily see the patient's information.

+

e-Health_all_elements

+

Quick FAQ:

+
    +
  • What does it mean to count with an open medical monitoring platform? +

    Cooking Hacks wants to give Community the necessary tools in order to develop new e-Health applications and products. We want Arduino and Raspberry Pi Community to use this platform as a quick proof of concept and the basis of a new era of open source medical products.

    +
  • +
  • How do I ensure the privacy of the biometric data sent? +

    Privacy is one of the key points in this kind of applications. For this reason the platform includes several security levels:

    +
      +
    • In the communication link layer: AES 128 for 802.14.5 / ZigBee and WPA2 for Wifi.
    • +
    • In the application layer: by using the HTTPS (secure) protocol we ensure a point to point security tunnel between each sensor node and the web server (this is the same method as used in the bank transfers).
    • +
    +

     

    +
  • +
+

Luis_connected

+

e-Health Sensor Shield over Arduino (left) Raspberry Pi (right)

+e-Health_all_elements
+
+

IMPORTANT: The e-Health Sensor Platform has been designed by Cooking Hacks (the open hardware division of Libelium) in order to help researchers, developers and artists to measure biometric sensor data for experimentation, fun and test purposes. Cooking Hacks provides a cheap and open alternative compared with the proprietary and price prohibitive medical market solutions. However, as the platform does not have medical certifications it can not be used to monitor critical patients who need accurate medical monitoring or those whose conditions must be accurately measured for an ulterior professional diagnosis.

+
+
+

NOTE: If you are searching for Wireless Sensor Networks devices (motes) you may be interested in our ready to market sensor platform: Waspmote.

+
+
+

Get the shields and sensors

+

Kit

+ +

Sensors

+ + +

Article Index

+ + +

1. Features.

+

The pack we are going to use in this tutorial is the eHealth Sensor platform from Cooking hacks. The e-Health Sensor Shield is fully compatible with Raspberry and new and old Arduino USB versions, Duemilanove and Mega.

+

 

+
    +
  • 7 non-invasive + 1 invasive medical sensors
  • +
  • Storage and use of glucose measurements.
  • +
  • Monitoring ECG signal.
  • +
  • Airflow control of patient.
  • +
  • Body temperature data.
  • +
  • Galvanic skin response measurements.
  • +
  • Body position detection.
  • +
  • Pulse and oxygen functions.
  • +
  • Blood pressure control device.
  • +
  • Multiple data visualization systems.
  • +
  • Compatible with all UART device.
  • +
+ +

Electrical features:

+

The e-Health shield can be powered by the PC or by an external power supply. Some of the USB ports on computers are not able to give all the current the module needs to work, if your module have problems when it work, you can use an external power supply (12V - 2A) on the Arduino/RasberryPi.

+ +
 
+ +

2. The shield

+

e-Health PCB

+
e-Health front e-Health front
+

Schematics

+

Download the e-Health Schematics

+

e-Health shield over Arduino

+
arduino_e_health
+montaje3 e-Health shield over Arduino +
 
+

The shields:

+ +

e-Health shield over Raspberry Pi

+

In order to connect the e-Health Sensor Shield to Raspberry Pi an adaptor shield is needed. Click here to know more about the Raspberry Pi to Arduino Shields Connection board.

+
raspberry_e_heatlh
+raspberry_e_heatlh raspberry_e_heatlh +
e-Health raspberry pi
+

The shields:

+ +

 

+
+

Warnings:

+
    +
  • The LCD, the glucometer and communication modules use the UART port and can't work simultaneously.
  • +
  • The LCD and the glucometer use the same connector.
  • +
  • The body position sensor and the sphygmomanometer can't work simultaneously. Use the jumpers integrated in the board to use one or other.
  • +
  • To use glucometer , you'll need to have the jumpers in the SPHY position. To use body position sensor, you'll need to have the jumpers in the POS configuration.
  • +
+

 

+
+

 

+ +
 
+ +

3. The library.

+

The e-health Sensor Platform counts with a C++ library that lets you read easily all the sensors and send the information by using any of the available radio interfaces. This library offers an simple-to-use open source system.

+

In order to ensure the same code is compatible in both platforms (Arduino and Raspberry Pi) we use the ArduPi libraries which allows developers to use the same code. Detailed info can be found here:

+ +

Using the library with Arduino

+

The eHealth sensor platform includes a high level library functions for a easy manage of the board. Before start using this functions you should download the files from this link. This zip includes all the files needed in two separated folders, “eHealth” and “PinChangeInt”. The “PinChangeInt” library is necessary only when you use the pulsioximeter sensor. Copy this folders in the arduino IDE folder “libraries”. Don't forget include these libraries in your codes.

+

Download the e-Health library for Arduino

+

Libraries are often distributed as a ZIP file or folder. The name of the folder is the name of the library. Inside the folder will be the .cpp files, .h files and often a keywords.txt file, examples folder, and other files required by the library.

+

To install the library, first quit the Arduino application. Then uncompress the ZIP file containing the library. For installing eHealth library , uncompress eHealth.zip. It should contain a folder called “eHealth” and another called “PinChangeInt”, with files like eHealth.cpp and eHealth.h inside. Drag the eHealth and PinChange folders into this folder (your libraries folder). Under Windows, it will likely be called "My Documents\Arduino\libraries". For Mac users, it will likely be called "Documents/Arduino/libraries". On Linux, it will be the "libraries" folder in your sketchbook.

+

The library won't work if you put the .cpp and .h files directly into the libraries folder or if they're nested in an extra folder. Restart the Arduino application. Make sure the new library appears in the Sketch->Import Library menu item of the software.

+

That's it! You've installed a library!

+

Using the library with Raspberry Pi

+

The e-Health library for Raspberry Pi requires the arduPi library and both libraries should be in the same path.

+

Download the e-Health Libraries for Raspberry

+

Creating a program that uses the library is as simple as putting your code in this template where it says "your arduino code here"

+
Show Code +
//Include eHealth library (it includes arduPi)
+#include "eHealth.h"
+
+//Needed for Serial communication
+SerialPi Serial;
+
+//Needed for accesing GPIO (pinMode, digitalWrite, digitalRead, i2C functions)
+WirePi Wire;
+
+//Needed for SPI
+SPIPi SPI;
+
+//Needed for eHealth
+eHealthClass eHealth;
+
+/*********************************************************
+ *  IF YOUR ARDUINO CODE HAS OTHER FUNCTIONS APART FROM  *
+ *  setup() AND loop() YOU MUST DECLARE THEM HERE        *
+ * *******************************************************/
+
+/**************************
+ * YOUR ARDUINO CODE HERE *
+ * ************************/
+
+int main (){
+	setup();
+	while(1){
+		loop();
+	}
+	return (0);
+}
+
+	
+
+

Compilation of the program can be done in two ways:

+
    +
  • Compiling separately eHealth and arduPi, and using them for compiling the program in a second step: +

    +
    g++ -c arduPi.cpp -o arduPi.o
    +

    +
    g++ -c eHealth.cpp -o eHealth.o
    +

    +
    g++ -lpthread -lrt user-e-health-app.cpp arduPi.o eHealth.o -o user-e-health-app
    +

    +
  • +
  • Compiling everithing in one step: +

    g++ -lpthread -lrt user-e-health-app.cpp arduPi.cpp eHealth.cpp -o user-e-health-app

    +
  • +
+

Executing your program is as simple as doing:

+
sudo ./user-e-health-app
+

 

+

General e-Health functions

+

Pulsioximeter sensor functions:

+
    +
  • +
    initPulsioximeter() // It initialize the pulsioximeter sensor.
    +
  • +
  • +
    readPulsioximeter() // It reads a value from pulsioximeter sensor.
    +
  • +
  • +
    getBPM() // Returns the heart beats per minute.
    +
  • +
  • +
    getOxygenSaturation() // Returns the oxygen saturation in blood in percent.
    +
  • +
+

ECG sensor funcion:

+
    +
  • +
    getECG() // Returns an analogic value to represent the Electrocardiography.
    +
  • +

    AirFlow sensor funcions:

    +
  • +
    getAirFlow() // Returns an analogic value to represent the air flow.
    +
  • +
  • +
    airFlowWave() // Prints air flow wave form in the serial monitor.
    +
  • +

    Temperature sensor function:

    +
+
    +
  • +
    getTemperature() // Returns the corporal temperature.
    +
  • +
+

Blood pressure functions //

+
    +
  • +
    initBloodPressureSensor() // It initialize  the blood pressure sensor.
    +
  • +
  • +
    getSystolicPressure() // Returns the  value of the systolic pressure.
    +
  • +
  • +
    getDiastolicPressure() // Returns the  value of the diastolic pressure.
    +
  • +
+

Booby position sensor functions:

+
    +
  • +
    initPositionSensor() // It initialize  the position sensor.
    +
  • +
  • +
    getBodyPosition() // Returns the body position.
    +
  • +
  • +
    printPosition() // Prints the current body position.
    +
  • +
+

GSR sensor functions:

+
    +
  • +
    getSkinConductance() // Returns the value of skin conductance.
    +
  • +
  • +
    getSkinResistance() // Returns the value of skin resistance.
    +
  • +
  • +
    getSkinConductanceVoltage() // Returns the value of skin conductance in voltage.
    +
  • +
+

Glucometer sensor functions:

+
    +
  • +
    readGlucometer() // Read the values stored in the glucometer.
    +
  • +
  • +
    GetGlucometerLength() // Returns the number of data stored in the glucometer.
    +
  • +
  • +
    numberToMonth() // Convert month variable from numeric to character.
    +
  • +
+ +
 
+ +

4. Sensor Platform.

+

Pulse and Oxygen in Blood (SPO2)

+

SPO2 sensor features

+

Pulse oximetry a noninvasive method of indicating the arterial oxygen saturation of functional hemoglobin.
Oxygen saturation is defined as the measurement of the amount of oxygen dissolved in blood, based on the detection of Hemoglobin and Deoxyhemoglobin. Two different light wavelengths are used to measure the actual difference in the absorption spectra of HbO2 and Hb. The bloodstream is affected by the concentration of HbO2 and Hb, and their absorption coefficients are measured using two wavelengths 660 nm (red light spectra) and 940 nm (infrared light spectra). Deoxygenated and oxygenated hemoglobin absorb different wavelengths.

+

 

+
pulsometro
+

Deoxygenated hemoglobin (Hb) has a higher absorption at 660 nm and oxygenated hemoglobin (HbO2) has a higher absorption at 940 nm . Then a photo-detector perceives the non-absorbed light from the LEDs to calculate the arterial oxygen saturation.

+

 

+A pulse oximeter sensor is useful in any setting where a patient's oxygenation is unstable, including intensive care, operating, recovery, emergency and hospital ward settings, pilots in unpressurized aircraft, for assessment of any patient's oxygenation, and determining the effectiveness of or need for supplemental oxygen. +

 

+Acceptable normal ranges for patients are from 95 to 99 percent, those with a hypoxic drive problem would expect values to be between 88 to 94 percent, values of 100 percent can indicate carbon monoxide poisoning. +

 

+The sensor needs to be connected to the Arduino or Raspberry Pi, and don't use external/internal battery. +

 

+Connecting the sensor
+

Connect the module in the e-Health sensor platform. The sensor have only one way of connection to prevent errors and make the connection easier.

+
ehealth_y_pulsometro
+Insert your finger into the sensor and press ON button. +
pulsometro_dedo
+After a few seconds you will get the values in the sensor screen. +
pulsometro
+Library functions
+

Initializing

+

This sensor use interruptions and it is necessary to include a special library when you are going to use it.

+

 

+
		#include < PinChangeInt.h >
+
+
+

 

+

After this include, you should attach the interruptions in your code to get data from th sensor. The sensor will interrupt the process to refresh the data stored in private variables.

+

 

+
PCintPort::attachInterrupt(6, readPulsioximeter, RISING);
+

 

+

The digital pin 6 of Arduino is the pin where sensor send the interruption and the function readpulsioximeter will be executed.

+

 

+
		void readPulsioximeter(){    
+	  		cont ++; 
+			if (cont == 50) { //Get only one 50 measures to reduce the latency
+	   	 		eHealth.readPulsioximeter();  
+	   	 		cont = 0;
+	  	  	}
+		}
+		
+

Before start using the SP02 sensor, it must be initialized. Use the next function in setup to configure some basic parameters and to start the communication between the Arduino/RaspberryPi and sensor.

+

Reading the sensor

+For reading the current value of the sensor, use the next function.
Example:
+
	{
+		eHealth.readPulsioximeter();
+	}
+				
+This function will store the values of the sensor in private variables.
+

Getting data

+To view data we can get the values of the sensor stored in private variable by using the next functions.
Example:
+
	{
+		int SPO2 = eHealth.getOxygenSaturation()
+
+		int BPM = eHealth.getBPM()
+	}
+			
+Example
Arduino +

 

+Upload the next code for seeing data in the serial monitor:
+
Show Code +
/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)." 
+ *
+ *  In this example we read the values of the pulsioximeter sensor 
+ *  and we show this values in the serial monitor
+ *
+ *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+ *  http://www.libelium.com
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see .
+ *
+ *  Version 0.1
+ *  Author: Luis Martin & Ahmad Saad
+ */
+
+
+#include < PinChangeInt.h >
+#include < eHealth.h >
+
+int cont = 0;
+
+void setup() {
+  Serial.begin(115200);  
+  eHealth.initPulsioximeter();
+
+  //Attach the inttruptions for using the pulsioximeter.   
+  PCintPort::attachInterrupt(6, readPulsioximeter, RISING);
+}
+
+void loop() {
+
+  Serial.print("PRbpm : "); 
+  Serial.print(eHealth.getBPM());
+
+  Serial.print("    %SPo2 : ");
+  Serial.print(eHealth.getOxygenSaturation());
+
+  Serial.print("\n");  
+  Serial.println("============================="); 
+  delay(500);
+}
+
+
+//Include always this code when using the pulsioximeter sensor
+//=========================================================================
+void readPulsioximeter(){  
+
+  cont ++;
+
+  if (cont == 50) { //Get only one 50 measures to reduce the latency
+    eHealth.readPulsioximeter();  
+    cont = 0;
+  }
+}
+
+		
+
+

Upload the code to Arduino and watch the Serial monitor.Here is the USB output using the Arduino IDE serial port terminal:

+
pulsioximetro_arduino
+

Raspberry Pi

+
Show Code +
//Include ArduPi library
+#include "eHealth.h"
+
+//Needed for eHealth
+eHealthClass eHealth;
+
+int cont = 0;
+
+void readPulsioximeter();
+
+void setup() { 
+
+	eHealth.initPulsioximeter();
+	//Attach the inttruptions for using the pulsioximeter.
+	attachInterrupt(6, readPulsioximeter, RISING);
+    
+}
+
+void loop() { 
+
+  printf("PRbpm : %d",eHealth.getBPM()); 
+
+  printf("    %%SPo2 : %d\n", eHealth.getOxygenSaturation());
+
+  printf("=============================");
+  
+  digitalWrite(2,HIGH);
+  
+  delay(500);
+  
+}
+
+void readPulsioximeter(){  
+
+  cont ++;
+  if (cont == 500) { //Get only of one 50 measures to reduce the latency
+    eHealth.readPulsioximeter();  
+    cont = 0;
+  }
+}
+
+int main (){
+	setup();
+	while(1){
+		loop();
+	}
+	return (0);
+}
+
+
+
+
+

Mobile app

+

The App shows the information the nodes are sending which contains the sensor data gathered. Smartphone app

+
iphone_app
+

GLCD

+

The GLCD shows the information the nodes are sending which contains the sensor data gathered. GLCD

+
iphone_app
+

Get the Pulse and Oxygen in Blood Sensor (SPO2)

+

Electrocardiogram (ECG)

+

ECG sensor features

+

The electrocardiogram (ECG or EKG) is a diagnostic tool that is routinely used to assess the electrical and muscular functions of the hear.

+

 

+The Electrocardiogram Sensor (ECG) has grown to be one of the most commonly used medical tests in modern medicine. Its utility in the diagnosis of a myriad of cardiac pathologies ranging from myocardial ischemia and infarction to syncope and palpitations has been invaluable to clinicians for decades. +

 

+The accuracy of the ECG depends on the condition being tested. A heart problem may not always show up on the ECG. Some heart conditions never produce any specific ECG changes. ECG leads are attached to the body while the patient lies flat on a bed or table. +

 

+What is measured or can be detected on the ECG (EKG)? +

 

+The orientation of the heart (how it is placed) in the chest cavity.
Evidence of increased thickness (hypertrophy) of the heart muscle.
Evidence of damage to the various parts of the heart muscle.
Evidence of acutely impaired blood flow to the heart muscle.
Patterns of abnormal electric activity that may predispose the patient to abnormal cardiac rhythm disturbances.
The underlying rate and rhythm mechanism of the heart. +

 

+Schematic representation of normal ECG +
sinus_rhythmlabels
+

 

+

Connecting the sensor

+
parches presentación
+

Connect the three leads (positive, negative and neutral) in the e-Health board.

+
parches ehealth parches ehealth
+

Connect the ECG lead to the electrodes.

+
montaje parches
+

Remove the protective plastic

+
quitando pegatinas
+

Place the electrodes as shown below

+body human_body +
Library functions
+

Getting data:

+

This ECG returns an analogic value in volts (0 – 5) to represent the ECG wave form.

+

Example

+
	{
+		float ECGvolt = eHealth.getECG();
+	}
+		
+Example
+

Arduino

+Upload the next code for seeing data in the serial monitor:
+
Show Code +
	
+
+/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)."
+ *
+ *  In this example we read the values in volts of ECG sensor and show
+ *  these values in the serial monitor. 
+ *
+ *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+ *  http://www.libelium.com
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see .
+ *
+ *  Version 0.1
+ *  Author: Luis Martin & Ahmad Saad
+ */
+
+#include < eHealth.h >
+
+// The setup routine runs once when you press reset:
+void setup() {
+  Serial.begin(115200);  
+}
+
+// The loop routine runs over and over again forever:
+void loop() {
+
+  float ECG = eHealth.getECG();
+
+  Serial.print("ECG value :  ");
+  Serial.print(ECG, 2); 
+  Serial.print(" V"); 
+  Serial.println(""); 
+
+  delay(1);	// wait for a millisecond
+}
+
+
+
+Upload the code and watch the Serial monitor. Here is the USB output using the Arduino IDE serial port terminal: +

 

+

Raspberry Pi

+
Show Code +
//Include ArduPi library
+#include "eHealth.h"
+
+//Needed for eHealth
+eHealthClass eHealth;
+
+// The loop routine runs over and over again forever:
+void loop() {
+
+  float ECG = eHealth.getECG();
+
+  printf("ECG value :  %f V\n",ECG);
+  delay(1000);
+}
+
+int main (){
+	//setup();
+	while(1){
+		loop();
+	}
+	return (0);
+}
+
+
+
+
+

Mobile App

+

The App shows the information the nodes are sending which contains the sensor data gathered. Smartphone app

+
android_8
+

GLCD

+

The GLCD shows the information the nodes are sending which contains the sensor data gathered. GLCD

+
pantalla5
+

KST

+

KST program shows the ECG wave.

+
ecg_measure
+

Get the Electrocardiogram Sensor (ECG)

+

Airflow: breathing

+

Airflow sensor features

+

Anormal respiratory rates and changes in respiratory rate are a broad indicator of major physiological instability, and in many cases, respiratory rate is one of the earliest indicators of this instability. Therefore, it is critical to monitor respiratory rate as an indicator of patient status. AirFlow sensor can provide an early warning of hypoxemia and apnea.

+

The nasal / mouth airflow sensor is a device used to measure the breathing rate in a patient in need of respiratory help or person. This device consists of a flexible thread which fits behind the ears, and a set of two prongs which are placed in the nostrils. Breathing is measured by these prongs.

+

The specifically designed cannula/holder allows the thermocouple sensor to be placed in the optimal position to accurately sense the oral/nasal thermal airflow changes as well as the nasal temperature air. Comfortable adjustable and easy to install.

+
canula_presentacion
+Single channel oral or nasal reusable Airflow Sensor. Stay-put prongs position sensor precisely in airflow path.
A normal adult human has a respiratory rate of 15–30 breaths per minute.
+
air_glow
+

Connecting the sensor

+The e-Health AirFlow sensor have two connections (positive and negative)
detalle_canula_presentacion e-Health_button2-01 +
 
+Connect the red wire with the positive terminal (marked as “+” in the board) and the black wire with the negative terminal (marked as “-” in the board).
+
e_health_canula_conectando
+After connecting the cables, tighten the screws
+
canula+e_health
+Place the sensor as shown in the picture below
+
montaje_luis_canula_airflow
+

Library functions

+

Getting data

+

The air flow sensor is connected to the Arduino/RasberryPi by an analog input and returns a value from 0 to 1024. With the next functions you can get this value directly and print a wave form in the serial monitor.

+

Example:

+

 

+
	{
+		int airFlow = eHealth.getAirFlow();
+		eHealth.airFlowWave(air);
+	}
+
+

 

+

Example

+

Arduino

+Upload the next code for seeing data in the serial monitor:
+
Show Code +
/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)."
+ *
+ *  In this example we read the values in volts of ECG sensor and show
+ *  these values in the serial monitor. 
+ *
+ *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+ *  http://www.libelium.com
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see .
+ *
+ *  Version 0.1
+ *  Author: Luis Martin & Ahmad Saad
+ */
+
+#include < eHealth.h >
+
+// The setup routine runs once when you press reset:
+void setup() {
+  Serial.begin(115200);  
+}
+
+// The loop routine runs over and over again forever:
+void loop() {
+
+  float ECG = eHealth.getECG();
+
+  Serial.print("ECG value :  ");
+  Serial.print(ECG, 2); 
+  Serial.print(" V"); 
+  Serial.println(""); 
+
+  delay(1);	// wait for a millisecond
+}
+
+
+		
+
+Upload the code and watch the Serial monitor.Here is the USB output using the Arduino IDE serial port terminal:
+
Ejemplo_AirFlow
+

Raspberry Pi

+

Compile this example code:

+
Show Code +
	
+
+//Include eHealth library
+#include "eHealth.h"
+
+//Needed for eHealth
+eHealthClass eHealth;
+
+extern SerialPi Serial;
+
+void setup() { 
+	 
+}
+
+void loop() { 
+	int air = eHealth.getAirFlow();   
+	eHealth.airFlowWave(air);  
+	delay(100);
+}
+
+int main (){
+	setup();
+	while(1){
+		loop();
+	}
+	return (0);
+}
+
+
+
+

Mobile App

+

The App shows the information the nodes are sending which contains the sensor data gathered. Smartphone app

+
iphone_3
+

GLCD

+

The GLCD shows the information the nodes are sending which contains the sensor data gathered. GLCD

+
breathing_measure
+

KST

+

KST program shows the ECG wave.

+
breathing_measure
+

Get the Airflow Sensor (Breathing)

+

Body temperature

+Temperature sensor features
+

Body temperature depends upon the place in the body at which the measurement is made, and the time of day and level of activity of the person. Different parts of the body have different temperatures.

+
elementos_pulsometro
+

The commonly accepted average core body temperature (taken internally) is 37.0°C (98.6°F). In healthy adults, body temperature fluctuates about 0.5°C (0.9°F) throughout the day, with lower temperatures in the morning and higher temperatures in the late afternoon and evening, as the body's needs and activities change.

+

It is of great medical importance to measure body temperature. The reason is that a number of diseases are accompanied by characteristic changes in body temperature. Likewise, the course of certain diseases can be monitored by measuring body temperature, and the efficiency of a treatment initiated can be evaluated by the physician.

+Hypothermia <35.0 °C (95.0 °F)
Normal 36.5–37.5 °C (97.7–99.5 °F)
Fever or Hyperthermia >37.5–38.3 °C (99.5–100.9 °F)
Hyperpyrexia >40.0–41.5 °C (104–106.7 °F)
+

Sensor Calibration

+

The precision of the Body Temperature Sensor is enough in most applications. But you can improve this precision by a calibration process.

+

When using temperature sensor, you are actually measuring a voltage, and relating that to what the operating temperature of the sensor must be. If you can avoid errors in the voltage measurements, and represent the relationship between voltage and temperature more accurately, you can get better temperature readings.

+

Calibration is a process of measuring voltage and resistance real values. In the eHealth.cpp file we can find getTemperature function. The values [Rc, Ra, Rb, RefTension] are imprecisely defined by default.

+
temperatura
+

If you measure these values with a multimeter and modify the library will obtain greater accuracy.

+
e-Health_button3-01
+

Place multimeter ends at the extremes of the resistors and measure the resistance value. In this case we would modify resistance value (Ra=4640 / Rb=819)...

+
1_det
+
2_det
+

Make the same process between 3V (red cable) and GND (black cable) but with the multimeter in voltage measurement. In this case we would not change the value.

+
elementos_pulsometro
+

Connecting the sensor

+

For taking measures of temperature, connect the sensor in the jack connector using the adapter

+
conectando_elementos_pulsometro
+

Make contact between the metallic part and your skin

+

Use a piece of adhesive tape to hold the sensor attached to the skin

+
tmp
+
cinta_aislante
+
sensor_dedo
+
sensor_dedo_puesto
+

Library functions

+

Geting data

+

The corporal temperature can be taken by a simple function. This function return a float with the last value of temperature measured by the Arduino/RasberryPi.

+

Example:

+
	{
+		float temperature = eHealth.getTemperature();
+	}
+
+

Example

+

Arduino

+

Upload the next code for seeing data in the serial monitor:

+
Show Code +
		/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)."  
+ *
+ *  In this example we use the temperature sensor to measure the 
+ *  corporal temperature of the body.
+ *
+ *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+ *  http://www.libelium.com
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see .
+ *
+ *  Version 0.1
+ *  Author: Luis Martin & Ahmad Saad
+ */
+
+#include < eHealth.h >
+
+// the setup routine runs once when you press reset:
+void setup() {
+  Serial.begin(115200);  
+}
+
+// the loop routine runs over and over again forever:
+void loop() {
+  float temperature = eHealth.getTemperature();
+
+  Serial.print("Temperature (ºC): ");       
+  Serial.print(temperature, 2);  
+  Serial.println(""); 
+
+  delay(1000);	// wait for a second 
+}
+
+
+	
+
+

Upload the code and watch the Serial monitor. Here is the USB output using the Arduino IDE serial port terminal:

+
Ejemplo_Temperatura_
+

Raspberry Pi

+

Compile the following example code:

+
Show Code +
	
+
+//Include eHealth library
+#include "eHealth.h"
+
+//Needed for eHealth
+eHealthClass eHealth;
+
+extern SerialPi Serial;
+
+
+void setup() { 
+	 
+}
+
+void loop() { 
+	float temperature = eHealth.getTemperature();   
+	printf("Temperature : %f \n", temperature);
+	delay(2000);
+}
+
+int main (){
+	setup();
+	while(1){
+		loop();
+	}
+	return (0);
+}
+
+
+
+
+

Mobile App

+

The App shows the information the nodes are sending which contains the sensor data gathered. Smartphone app

+
android_6
+

GLCD

+
GLCD
+

Get the Body Temperature Sensor

+

Blood pressure

+

Blood pressure sensor features

+

Blood pressure is the pressure of the blood in the arteries as it is pumped around the body by the heart. When your heart beats, it contracts and pushes blood through the arteries to the rest of your body. This force creates pressure on the arteries. Blood pressure is recorded as two numbers—the systolic pressure (as the heart beats) over the diastolic pressure (as the heart relaxes between beats).

+

Monitoring blood pressure at home is important for many people, especially if you have high blood pressure. Blood pressure does not stay the same all the time. It changes to meet your body’s needs. It is affected by various factors including body position, breathing or emotional state, exercise and sleep. It is best to measure blood pressure when you are relaxed and sitting or lying down.

+

Classification of blood pressure for adults (18 years and older)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 Systolic (mm Hg)Diastolic (mm Hg)
Hypotension< 90< 60
Desired90–11960–79
Prehypertension120–13980–89
Stage 1 Hypertension140–15990–99
Stage 2 Hypertension160–179100–109
Hypertensive Crisis≥ 180≥ 110
+

High blood pressure (hypertension) can lead to serious problems like heart attack, stroke or kidney disease. High blood pressure usually does not have any symptoms, so you need to have your blood pressure checked regularly.

+

The sensor needs to be connected to the Arduino and use internal battery (2X3A)

+
tensiometro_presentacion
+

Sensor Calibration

+

The precision of the Blood Pressure Sensor (Sphygmomanometer) is enough in most applications. But you can improve this precision by a calibration process.

+

The calibration of this sensor is complicated. Libelium team handles make and provides a calibration offset value.

+

We only need to modify the parameter in our code.

+
pegatina_tensiometro
+
Tensionometre
+

Connecting the sensor

+

The first thing we are going to do with the module is to connect the jumpers in right position. In this case, jumpers have to be set on SPHY gateway position.

+
pulsometro_conectando_e_health
+

Connect the jack cable with the sphygmomanometer and the e-Health board.

+
tensiometro+e_health
+

Place the sphygmomanometer on your wrist as shown in the image below. Palm up and the rigth side of the blood-pressure meter up, wrap the cuff around the left wrist from 5-10mm (about a pinky finger width).

+
tensiometro_conector
+

To correct measure is important to maintain the heart and the wrist in the horizontal plane.

+
tensionometer_man
+
luis2
+

Press On/Off button and wait while the sphygmomanometer is taking the measure.

+
pulsando_boton_pulsometro
+

After a few seconds the result is shown in the sphygmomanometer screen and in the Arduino serial monitor. The measure is taken independently by the Arduino/RasberryPi, and may not match exactly, but the values should be very similar. Do not make abrupt movements or the measure will be not reliable.

+

Library functions

+

Initializing blood pressure sensor

+

Some parameters must be initialized to start using blood pressure sensor (sphygmomanometer). The next function initializes some variables and wait until the on/off button of the sphygmomanometer is pressed.

+

Example:

+
	{
+		float parameter = -0.1;
+		eHealth.initBloodPressureSensor(parameter);		
+	}
+		
+

Due to a calibration process, all the sphygmomanometer have a special parameter that must be introduced in the code.

+Getting data +

The next functions return the values of systolic and diastolic pressure measured by the sphygmomanometer and stored in private variables of the e-Health class.

+

Example:

+
	}
+		int systolic = Serial.println(eHealth.getSystolicPressure());      
+		int diastolic = 	Serial.println(eHealth.getDiastolicPressure());
+	}
+
+

Example

+

Arduino

+

Upload the next code for seeing data in the serial monitor:

+
Show Code +
/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)." 
+ *  
+ *  In this example we are going to measure the blood pressure
+ *  and show the result in the serial monitor.   
+ *
+ *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+ *  http://www.libelium.com
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see  .
+ *
+ *  Version 0.1
+ *  Author: Luis Martin & Ahmad Saad
+ */
+
+
+#include < eHealth.h >
+
+//This parameter must be introduced manually.
+//Please see the tutorial for more information. 
+float parameter = 0.0;
+
+void setup() {
+  Serial.begin(115200);
+  Serial.println("Press On/Off button please...");
+
+}
+
+void loop() {
+
+  eHealth.initBloodPressureSensor(parameter);
+
+  Serial.println("****************************");
+  Serial.print("Systolic blood pressure value : ");
+  Serial.println(eHealth.getSystolicPressure());
+  delay(10);
+
+  Serial.println("****************************");
+  Serial.print("Diastolic blood pressure value : ");
+  Serial.println(eHealth.getDiastolicPressure());
+  delay(10); 
+
+  delay(3000);   
+}
+			
+
+

Upload the code and watch the Serial monitor.Here is the USB output using the Arduino IDE serial port terminal:

+
Ejemplo_PresionSanguinea_
+

Raspberry Pi

+ +

Mobile App

+

The App shows the information the nodes are sending which contains the sensor data gathered. Smartphone app

+
iphone_5
+

GLCD

+

The GLCD shows the information the nodes are sending which contains the sensor data gathered. GLCD

+
GLCD
+

Get the Blood Pressure Sensor (Sphygmomanometer)

+

Patient position and falls

+

Position sensor features

+

The Patient Position Sensor (Accelerometer) monitors five different patient positions (standing/sitting, supine, prone, left and right.)

+

In many cases, it is necessary to monitor the body positions and movements made because of their relationships to particular diseases (i.e., sleep apnea and restless legs syndrome). Analyzing movements during sleep also helps in determining sleep quality and irregular sleeping patterns. The body position sensor could help also to detect fainting or falling of elderly people or persons with disabilities.

+
pulsometro_pecho_presentacion
+

eHealth Body Position Sensor uses a triple axis accelerometer to obtain the patient's position.

+

Features:

+
    +
  • 1.95 V to 3.6 V supply voltage
  • +
  • 1.6 V to 3.6 V interface voltage
  • +
  • ±2g/±4g/±8g dynamically selectable full-scale
  • +
+

This accelerometer is packed with embedded functions with flexible user programmable options, configurable to two interrupt pins.The accelerometer has user selectable full scales of ±2g/±4g/±8g with high pass filtered data as well as non filtered data available real-time.

+

Body positions:

+body_positions +

Connecting the sensor

+

The first thing we are going to do with the module is to connect the jumpers in right position. In this case, jumpers have to be set on POS gateway position.

+

The body position sensor has only one and simple way of connection. Connect the ribbon cable with the body position sensor and the e-Health board as show in the image below.

+
conectando_pulsometro_pecho
+
elementos_pulsometro
+
e_health+pulsometro_pecho
+

Place the tape around the chest and the connector placed down

+
luis1
+

Library functions

+

The e-Health library allows a simple programing way. With one simple function we can get the position of the patient and show it in the serial monitor of the Arduino/RasberryPi or in the GLCD.

+

Initializing the sensor

+

Before start using the sensor, we have to initialize some parameters. Use the next function to configure the sensor.

+

Example:

+
{
+	eHealth.initPositionSensor();
+}
+
+

Getting data

+

The next functions return the a value that represent the body position stored in private variables of the e-Health class.

+

Example :

+
{
+  uint8_t position = eHealth.getBodyPosition(); 
+}
+
+

The position of the pacient

+
1 == Supine position.
+
2 == Left lateral decubitus.
+
3 == Rigth lateral decubitus.
+
4 == Prone position.
+
5 == Stand or sit position.
+

Printing Data

+

For representing the data in a easy way in the Arduino/RasberryPi serial monitor, e-health library, includes a printing function.

+

Example:

+
{
+	 Serial.print("Current position : ");
+	 uint8_t position = eHealth.getBodyPosition(); 
+	 eHealth.printPosition(position);  
+}
+
+

Example

+

Arduino

+

Upload the next code for seeing data in the serial monitor:

+
Show Code +
/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)." 
+ *
+ *  In this example with the body position sensor we measure 
+ *  the current body position of the patient and show it in the serial
+ *  monitor.
+ *
+ *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+ *  http://www.libelium.com
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see  .
+ *
+ *  Version 0.1
+ *  Author: Luis Martin & Ahmad Saad
+ */
+
+
+#include < eHealth.h >
+
+void setup() {
+
+  Serial.begin(115200);  
+  eHealth.initPositionSensor();     
+}
+
+void loop() {  
+
+  Serial.print("Current position : ");
+  uint8_t position = eHealth.getBodyPosition(); 
+  eHealth.printPosition(position);  
+
+  Serial.print("\n");
+  delay(1000); //	wait for a second.
+}
+
+
+	
+
+

Upload the code and watch the Serial monitor.Here is the USB output using the Arduino IDE serial port terminal:

+
Ejemplo_BodyPosition_
+

Raspberry Pi

+

Under development

+ +

Mobile App

+

The App shows the information the nodes are sending which contains the sensor data gathered. Smartphone app

+
iphone_6
+

GLCD

+

The GLCD shows the information the nodes are sending which contains the sensor data gathered. GLCD

+
GLCD
+

Get the Patient Position Sensor (Accelerometer)

+

Galvanic Skin Response (GSR)

+

GSR sensor features

+

Skin conductance, also known as galvanic skin response (GSR) is a method of measuring the electrical conductance of the skin, which varies with its moisture level. This is of interest because the sweat glands are controlled by the sympathetic nervous system, so moments of strong emotion, change the electrical resistance of the skin. Skin conductance is used as an indication of psychological or physiological arousal, The Galvanic Skin Response Sensor (GSR - Sweating) measures the electrical conductance between 2 points, and is essentially a type of ohmmeter.

+
velcro
+
gsr
+

In skin conductance response method, conductivity of skin is measured at fingers of the palm. The principle or theory behind functioning of galvanic response sensor is to measure electrical skin resistance based on sweat produced by the body. When high level of sweating takes place, the electrical skin resistance drops down. A dryer skin records much higher resistance. The skin conductance response sensor measures the psycho galvanic reflex of the body. Emotions such as excitement, stress, shock, etc. can result in the fluctuation of skin conductivity. Skin conductance measurement is one component of polygraph devices and is used in scientific research of emotional or physiological arousal.

+

Sensor Calibration

+

The precision of the sensor is enough in most applications. But you can improve this precision by a calibration process.

+

When using temperature sensor, you are actually measuring a voltage, and relating that to what the operating temperature of the sensor must be. If you can avoid errors in the voltage measurements, and represent the relationship between voltage and temperature more accurately, you can get better temperature readings.

+

Calibration is a process of measuring real voltage values. In the eHealth.cpp file we can find getSkinConductance and getSkinResistance functions. The value 0.5 is imprecisely defined by default.

+

If you measure this voltage value with a multimeter and modify the library will obtain greater accuracy.

+
Resistance
+

Place multimeter ends between 0.5V (Red cable) and GND (Black cable). In this case we would modify 0.5 to 0.498.

+
e-Health_button4-01
+

Connecting the sensor

+

Connect the to wires in the GSR contacts. The contacts have not polarization.

+
4_det
+
e_health_velcros
+

The galvanic skin sensor has two contacts and it works like a ohmmeter measuring the resistance of the materials. Place your fingers in the metallic contacts and tighten the velcro as shown in the image below.

+
dedo_velcro1
+
dedo_velcro2
+
dedo_velcro3
+
dedo_velcro4
+

Library functions

+

Getting data

+

With this simple functions we can read the value of the sensor. The library returns the value of the skin resistance and the skin conductance.

+

Example:

+
{
+	float conductance = eHealth.getSkinConductance();
+	float resistance = eHealth.getSkinResistance();
+ 	float conductanceVol = eHealth.getSkinConductanceVoltage();
+}
+
+

Example

+

Upload the next code for seeing data in the serial monitor:

+
Show Code +
+/*
+  *  eHelath board from Libelium for Arduino.
+  *  Explanation : 
+  *
+  *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+  *  http://www.libelium.com
+  *
+  *  This program is free software: you can redistribute it and/or modify
+  *  it under the terms of the GNU General Public License as published by
+  *  the Free Software Foundation, either version 3 of the License, or
+  *  (at your option) any later version.
+  *
+  *  This program is distributed in the hope that it will be useful,
+  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  *  GNU General Public License for more details.
+  *
+  *  You should have received a copy of the GNU General Public License
+  *  along with this program.  If not, see .
+  *
+  *  Version 0.1
+  *  Author: Ahmad Saad & Luis Martin
+  */
+
+#include < eHealth.h > 
+
+// the setup routine runs once when you press reset:
+void setup() {                
+  Serial.begin(115200);  
+}
+
+// the loop routine runs over and over again forever:
+void loop() {
+  
+ float conductance = eHealth.getSkinConductance();
+ float resistance = eHealth.getSkinResistance();
+ float conductanceVol = eHealth.getSkinConductanceVoltage();
+
+ if (conductance == -1) {
+   Serial.println(" No patient connection");
+ } else {
+
+         Serial.print("Conductance : ");       
+         Serial.print(conductance, 2);  
+         Serial.println("");         
+ 
+         Serial.print("Resistance : ");       
+         Serial.print(resistance, 2);  
+         Serial.println("");    
+         
+         Serial.print("Conductance Voltage : ");       
+         Serial.print(conductanceVol, 4);  
+         Serial.println("");
+         
+         Serial.print("\n");
+ }
+       
+    // wait for a second  
+    delay(1000);            
+}
+
+
+
+
+

Upload the code to Arduino and watch the Serial monitor.

+

Here is the USB output using the Arduino IDE serial port terminal:

+
Ejemplo_GSR_
+

Raspberry Pi

+

Compile the following code example:

+
Show Code +
//Include eHealth library
+#include "eHealth.h"
+
+//Needed for eHealth
+eHealthClass eHealth;
+
+extern SerialPi Serial;
+
+void setup() { 
+	 
+}
+
+void loop() { 
+	
+  float conductance = eHealth.getSkinConductance();
+  float resistance = eHealth.getSkinResistance();
+  float conductanceVol = eHealth.getSkinConductanceVoltage();
+
+  printf("Conductance : %f \n", conductance);    
+  printf("Resistance : %f \n", resistance);  
+  printf("Conductance Voltage : %f \n", conductanceVol);       
+
+  printf("\n");
+
+  // wait for a second  
+  delay(1000);   
+}
+
+int main (){
+	setup();
+	while(1){
+		loop();
+	}
+	return (0);
+}
+
+
+
+

Mobile App

+

The App shows the information the nodes are sending which contains the sensor data gathered. Smartphone app

+
android_6
+

GLCD

+

The GLCD shows the information the nodes are sending which contains the sensor data gathered. GLCD

+
GLCD
+

KST

+

 

+

KST program shows the ECG wave.

+

 

+
Pantallazo-2
+
Pantallazo2
+

Get the Galvanic Skin Response Sensor (GSR - Sweating)

+

Glucometer

+

Glucometer sensor features

+

Glucometer is a medical device for determining the approximate concentration of glucose in the blood. A small drop of blood, obtained by pricking the skin with a lancet, is placed on a disposable test strip that the meter reads and uses to calculate the blood glucose level. The meter then displays the level in mg/dl or mmol/l.

+
presentacion_glucometro
+

Despite widely variable intervals between meals or the occasional consumption of meals with a substantial carbohydrate load, human blood glucose levels tend to remain within the normal range. However, shortly after eating, the blood glucose level may rise, in non-diabetics, temporarily up to 7.8 mmol/L (140 mg/dL) or a bit more.

+

Connecting the sensor

+

Before start using the glucometer we need one measure at least in the memory of the glucometer. After that we can get all the information contained in the glucometer( date, glucose value).

+
elementos_pulsometro
+

Turn on the glucometer and place a test strip in the machine when the machine is ready. Watch the indicator for placing the blood to the strip.

+
glucometro
+

Clean the end of your index finger with rubbing alcohol before pricking it with an sterile needle or lancet.

+
+

NOTE: The needles or lancets are not provided.

+
+
pinchando_dedo
+

Pierce your finger tip on the soft, fleshy pad and obtain a drop of blood. The type of drop of blood is determined by the type of strip you are using

+
dedo_sangre
+

Place the drop of blood on or at the side of the strip.

+
prueba_glucosa1
+
prueba_glucosa
+

The glucometer will take a few moments to calculate the blood sugar reading.

+
medida_glucosa
+

The glucometer will store the value in the memory.

+

In order to extract the data from the glucometer to the Arduino or Raspberry Pi, connect the cable as show in the picture.

+
conectando_lector_azul
+

You should view in the glucometer screen the message “P-C”, that indicates the correct connection.

+
elementos_pulsometro
+

Library functions

+

Getting data

+

With a simple function we can read all the measures stored in the glucometer and show them in the terminal. The function must be used before the intilizazion of the serial monitor.

+

Example of use:

+
{
+	eHealth.readGlucometer();
+	Serial.begin(115200);
+}
+
+

The amount of data read is accessible with a another public function.

+

Example of use:

+
{
+	uint8_t numberOfData eHealthClass.getGlucometerLength()
+}
+
+

The maximum number of measures is 32. The vector where data is a public variable of the e-Health class.

+

Example of use:

+
{
+    Serial.print(F("Glucose value : ")); 
+    Serial.print(eHealth.glucoseDataVector[i].glucose);
+    Serial.println(F(" mg/dL"));
+}
+
+

Example

+

Arduino

+

Upload the next code for seeing data in the serial monitor:

+
Show Code +
/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)." 
+ *  
+ *  In this example we are going to get data stored in the glucometer 
+ *  memory and show the result in the serial monitor.   
+ *
+ *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+ *  http://www.libelium.com
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see  .
+ *
+ *  Version 0.1
+ *  Author: Luis Martin & Ahmad Saad
+ */
+
+
+#include < eHealth.h >
+
+void setup() { 
+
+  eHealth.readGlucometer();
+  Serial.begin(115200);
+  delay(100);    
+}
+
+void loop() { 
+
+  uint8_t numberOfData = eHealth.getGlucometerLength();   
+  Serial.print(F("Number of measures : "));    
+  Serial.println(numberOfData, DEC);   
+  delay(100);
+
+
+  for (int i = 0; i < numberOfData; i++) { 
+    // The protocol sends data in this order 
+    Serial.println(F("=========================================="));
+
+    Serial.print(F("Measure number "));
+    Serial.println(i + 1);
+
+    Serial.print(F("Date -> ")); 
+    Serial.print(eHealth.glucoseDataVector[i].day); 
+    Serial.print(F(" of ")); 
+    Serial.print(eHealth.numberToMonth(eHealth.glucoseDataVector[i].month));
+    Serial.print(F(" of "));
+    Serial.print(2000 + eHealth.glucoseDataVector[i].year);    
+    Serial.print(F(" at "));
+
+    if (eHealth.glucoseDataVector[i].hour < 10) {
+      Serial.print(0); // Only for best representation.
+    }
+
+    Serial.print(eHealth.glucoseDataVector[i].hour);
+    Serial.print(F(":"));
+
+    if (eHealth.glucoseDataVector[i].minutes < 10) {
+      Serial.print(0);// Only for best representation.
+    }
+    Serial.print(eHealth.glucoseDataVector[i].minutes);
+
+    if (eHealth.glucoseDataVector[i].meridian == 0xBB)
+      Serial.println(F(" pm"));
+    else if (eHealth.glucoseDataVector[i].meridian == 0xAA)
+      Serial.println(F(" am")); 
+
+    Serial.print(F("Glucose value : ")); 
+    Serial.print(eHealth.glucoseDataVector[i].glucose);
+    Serial.println(F(" mg/dL"));
+  }
+
+  delay(20000);
+}
+			
+
+

Upload the code and watch the Serial monitor.Here is the USB output using the Arduino IDE serial port terminal:

+
Ejemplo_glucometro_
+

Raspberry Pi

+

Compile the following code:

+
Show Code +
//Include eHealth library
+#include "eHealth.h"
+
+//Needed for eHealth
+eHealthClass eHealth;
+
+
+/*********************************************************
+ *  IF YOUR ARDUINO CODE HAS OTHER FUNCTIONS APART FROM  *
+ *  setup() AND loop() YOU MUST DECLARE THEM HERE        *
+ * *******************************************************/
+
+void setup() { 
+
+  eHealth.readGlucometer();
+  delay(100);    
+}
+
+void loop() { 
+
+  uint8_t numberOfData = eHealth.getGlucometerLength();   
+  printf("Number of measures : %d\n",numberOfData);       
+  delay(100);
+
+
+  for (int i = 0; i< numberOfData; i++) { 
+    // The protocol sends data in this order 
+    printf("==========================================\n");
+
+    printf("Measure number %d\n",i+1);
+
+    printf("Date -> %d",eHealth.glucoseDataVector[i].day); 
+    printf(" of "); 
+    printf("%d",eHealth.numberToMonth(eHealth.glucoseDataVector[i].month));
+    printf(" of ");
+    printf("%d",2000 + eHealth.glucoseDataVector[i].year);    
+    printf(" at ");
+
+    if (eHealth.glucoseDataVector[i].hour < 10) {
+      printf("0"); // Only for best representation.
+    }
+
+    printf("%d",eHealth.glucoseDataVector[i].hour);
+    printf(":");
+
+    if (eHealth.glucoseDataVector[i].minutes < 10) {
+      printf("0");// Only for best representation.
+    }
+    printf("%d",eHealth.glucoseDataVector[i].minutes);
+
+    if (eHealth.glucoseDataVector[i].meridian == 0xBB)
+      printf(" pm");
+    else if (eHealth.glucoseDataVector[i].meridian == 0xAA)
+      printf(" am"); 
+
+    printf("Glucose value : %d mg/dL",eHealth.glucoseDataVector[i].glucose); 
+  }
+
+  delay(20000);
+}
+
+int main (){
+	setup();
+	while(1){
+		loop();
+	}
+	return (0);
+}
+	
+
+

Get the Glucometer Sensor

+ +
 
+ +

5. Visualizing the data.

+

GLCD

+

The e-Health library includes functions to manage a graphic LCD for visualizing data. The Serial Graphic LCD backpack is soldered to the 128x64 pixel Graphic LCD and provides the user a simple serial interface.

+

Features:

+

Connecting the GLCD

+

You need to connect the device with the signals in the correct position. The red wire that powers the module shows how to connect it.

+
e_health+pantalla
+
pantalla2
+The sensor measures are distributed in three screens that change by pressing the button. +
e-Health_button-01
+In the first screen we can see some values like temperature, pulse or oxygen. +
pantalla1b
+In the second screen is used for presenting the air flow wave. +
pantalla4
+When no respiration is detected, the screen will advise of a risq of apnea. +
pantalla3
+The last screen draws the ECG wave. +
pantalla5
+

After the third screen, if you push the button again you will return to the first screen.

+

GLCD Library

+

The eHealth library includes all the necessary functions to manage the LCD and show in real time the data sensor measures. In order to use this functions, before all, you should include the corresponding library.

+

 

+
#include < eHealthDisplay.h >
+

 

+

Library functions:

+

Initializing the LCD

+

Use the init function in the setup before start using the LCD.

+

 

+

Example

+

 

+
		{
+			eHealthDisplay.init();
+		}
+
+

 

+

Values Screen:

+

In this screen you can see some numerical parameters like pulse, oxygen , temperature, amd a representation of the current body position.

+

Initializing

+

This screen must be initialized with the next function:

+

Example:

+
		{
+			eHealthDisplay.initValuesScreen();
+		}
+
+

Getting data

+

To refresh the values in the LCD execute the next function.

+

Example

+
		{
+			eHealthDisplay.printValuesScreen();
+		}
+
+

AirFlow screen:

+

In this screen we could see the air flow (breathing) wave and the number of breathings per minute. This screen includes an apnea adviser when no breathing is detected.

+

Initializing

+

This screen must be initialized with the next function:

+

 

+Example: +

 

+
		{
+			eHealthDisplay.initAirFlowScreen();
+		}
+
+

Getting data

+

To refresh the values in the LCD execute the next function.

+

Example

+
		{
+			eHealthDisplay.printAirFlowScreen();
+		}
+
+

ECGScreen:

+

This screen draws the electrocardiogram wave and measures the heart beat rate.

+

Initializing

+

This screen must be initialized with the next function:

+

Example:

+
		{
+			eHealthDisplay.initECGScreen();
+		}
+
+

Getting data

+

To refresh the values in the LCD execute the next function.

+

 

+Example +

 

+
		{
+			eHealthDisplay.printECGScreen();
+		}
+
+

The push button:

+

The eHealth board icludes an integrated push button to change between the screen or it can be used lika a general purpuose button for any application. The push button is routed to the digital pin 4.

+

Example

+

Arduino

+

Upload the next code for seeing data in the GLCD:

+
Show Code +
/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)."  
+ *
+ *  In this example we can view all data measures in the LCD, choosing
+ *  between 3 screens by a push button integrated in the eHealth board. 
+ * 
+ *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+ *  http://www.libelium.com
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see .
+ *
+ *  Version 0.1
+ *  Author: Luis Martin & Ahmad Saad 
+ */
+
+#include < PinChangeInt.h >
+#include < eHealth.h >
+
+#define pushButton 4
+
+uint8_t screenNumber = 1; 
+uint8_t buttonState;
+uint8_t cont = 0;
+
+void setup() {
+  Serial.begin(115200);
+  delay(100); 
+
+  //Configure and initializes the LCD.
+  eHealthDisplay.init(); 
+  delay(100); 
+}
+
+
+void loop() {
+
+  //Screen number one with the numerical sensor values and body position 
+  //=========================================================================
+
+  eHealthDisplay.initValuesScreen();
+  delay(100);
+
+  //Attach the inttruptions for using the pulsioximeter     
+
+  PCintPort::attachInterrupt(6, readPulsioximeter, RISING);
+
+  while(screenNumber == 1) {
+    //It prints data sensor measures in the LCD.
+    buttonState = digitalRead(pushButton);
+    delay(10);
+
+    if(buttonState == 1) {
+      screenNumber++;
+    }
+
+    eHealthDisplay.printValuesScreen();
+  }
+
+  PCintPort::detachInterrupt(6);
+
+
+  //Screen number two wich represent the air flow wave 
+  //=========================================================================
+
+  eHealthDisplay.initAirFlowScreen();	
+
+  while( screenNumber == 2) {
+    buttonState = digitalRead(pushButton);    
+    delay(10);
+
+    if(buttonState==1){
+      screenNumber++;
+    }
+
+    eHealthDisplay.printAirFlowScreen();      
+  }
+
+  //Screen number three wich represent the ECG wave 
+  //=========================================================================
+
+  eHealthDisplay.initECGScreen();	
+
+  while( screenNumber == 3) {
+    buttonState = digitalRead(pushButton);    
+    delay(10);
+
+    if(buttonState==1){
+      screenNumber++;
+    }
+
+    eHealthDisplay.printECGScreen();
+  }
+
+  screenNumber = 1;
+  delay(10);  
+}
+
+//Include always this function for using the pulsioximeter sensor
+//=========================================================================
+void readPulsioximeter() {  
+
+  cont ++;
+
+  if (cont == 50) {
+    //Get only one 50 measures to reduce the latency
+    eHealth.readPulsioximeter();  
+    cont = 0;
+  }
+}
+
+	
+
+

The GLCD shows the information the nodes are sending which contains the sensor data gathered.

+

KST: Real-time data viewing and plotting

+

KST is the fastest real-time large-dataset viewing and plotting tool available (you may be interested in some benchmarks) and has built-in data analysis functionality. It is very user-friendly and contains many powerful built-in features and is expandable with plugins and extensions.

+
3-pics
+

KST is licensed under the GPL, and is as such freely available for anyone. What's more, as of 2.0.x it is available on all of the following platforms: Microsoft Windows, Linux, Mac OSX.

+

Before all, you have to install the KST program in your PC. You can downloaded the program from KST web page:

+

http://kst-plot.kde.org/

+

We are going to use KST for representing the ECG wave, airFlow and galvanic skin response.

+

Example code

+

This example is for Linux OS. It will represent different waves and data measured by e-Health sensor platform.

+

You can find more information about how to use KST on this video tutorial.

+

To begin working with our real-time data must first load the appropriate code in the Arduino.

+

As we will work with Linux we will use the console to save data to a file (.txt).

+

Plug in the device, and execute

+
		stty -F /dev/ttyACM0 cs8 9600 ignbrk -brkint -icrnl -imaxbel -opost -onlcr -isig -icanon 
+		-iexten -echo -echoe -echok -echoctl -echoke noflsh -ixon -crtscts 
+		
+
14_
+

in console "A".

+

With this command we will configure the port ttyACM0.

+

Next, we use the command on the same console to create the text file where data will be stored.

+
		tail -f /dev/ttyACM0 > Desktop/test.txt
+	
+
456_
+

The Arduino KST sample programs are ready to send data continuously when it receives a "C" and stop sending when it receive an "F". These data will be sent by console "B" with commands:

+
		echo 'C' > /dev/ttyACM0
+		echo 'F' > /dev/ttyACM0
+		
+
546_
+
7887_
+

Basic configuration

+

Now with the file created and updated with data received, we have to open the program KST.

+

To configure KST for each example, we will need to set common parameters.

+
+
1) In pop-up window select the directory where the .txt previously created and press the Configure button.
+ Pantallazo_
+
+
2) The next step, is to configure the data source.
+ Pantallazo-1_
+
+
3) Select the measurement data. The data is field/column 2.
+ Pantallazo_
+
+
 
+ Pantallazo-1_
+
 
+

The final step is different depending on each example.

+

ECG example in KST

+

In this example we configure the KST to show a defined period of x time (x=300). We are interested only in the most current values of the ECG.

+ Pantallazo-5_ Pantallazo-6_ +
ecg_measure
+

The Arduino code used in this program is presented next:

+
Show Code +
/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)." 
+ *
+ *  In this example we read the value of the ECG sensor and print the
+ *  ECG wave form using KST.
+ *
+ *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
+ *  http://www.libelium.com
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see .
+ *
+ *  Version 0.1
+ *  Author: Luis Martin & Ahmad Saad 
+ */
+
+
+#include < eHealth.h >
+
+extern volatile unsigned long timer0_overflow_count;
+float fanalog0;
+int analog0;
+unsigned long time;
+
+
+byte serialByte;
+void setup() {
+  Serial.begin(9600);
+  Serial.println("Starting...");
+}
+
+void loop() { 
+  while (Serial.available()>0){  
+    serialByte=Serial.read();
+    if (serialByte=='C'){        
+      while(1){
+        fanalog0=eHealth.getECG();  
+        // Use the timer0 => 1 tick every 4 us
+        time=(timer0_overflow_count << 8) + TCNT0;        
+        // Microseconds conversion.
+        time=(time*4);   
+        //Print in a file for simulation
+        Serial.print(time);
+        Serial.print(";");
+        Serial.println(fanalog0,5);
+
+        if (Serial.available()>0){
+          serialByte=Serial.read();
+          if (serialByte=='F')  break;
+        }
+      }
+    }
+  }
+}
+
+			
+
+

Galvanic Skin Response example in KST

+

In the Galvanic Skin Response example we are interested in all the data from the start of measurement. We will configure the KST to show a wave with all data.

+ Pantallazo-4_ Pantallazo-6_ +
Pantallazo-2
+
Pantallazo2
+ +

AirFlow example

+ +We can configure the program according to the data we want to sample. + +
Pantallazo2
+ + + +

Serial Console

+ +

All data can be visualized in the serial monitor of Arduino/RasberryPi by using the next serial console program.

+ +

Load the example eHealth_SerialMenu program and open the serial monitor of Arduino IDE.

+ + +

In the main menu we can find all e-Health sensors. By sending a command to the serial port we can select one of them.

+ +
Pantallazo2
+ + +

+To view the sensor measures, send the corresponding command and press enter key.
+You can return to the main menu by sending the command “B”. +

+ +
Pantallazo2 +
+ +
+

NOTE:The measurement of glucose has not been implemented in this example because both processes use UART communication and can cause malfunction

+
+ + +

The Arduino code used in this program is presented next:

+ +
Show Code +
/*
+ *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
+ *
+ *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
+ *  users to perform biometric and medical applications by using 9 different 
+ *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
+ *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
+ *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
+ *  Patient Position (Accelerometer)." 
+ *
+ *  In this example we have used the serial monitor like a programed
+ *  console where we can choose the sensor we want to view.  *   
+ * 
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see < http://www.gnu.org/licenses/ >.
+ *
+ *  Version 0.1
+ *  Author: Ahmad Saad & Luis Martín 
+ */
+
+
+#include < eHealth.h >
+#include < PinChangeInt.h >
+
+
+char serialByte;
+uint8_t state = 0;
+uint8_t cont = 0;
+
+float parameter = 0.0;
+
+    void setup() 
+    {
+      Serial.begin(115200);
+      initScreen();
+      delay(100);
+    }
+    
+    void loop() 
+    {      
+      state = 0;
+   
+       while (Serial.available()>0){  
+        serialByte=Serial.read();
+        
+          if ((serialByte=='A') || (serialByte == 'a')){ //Airflow sensor  
+            airFlowMenu();
+            airFlowBucle();
+
+          } else if ((serialByte=='S') || (serialByte == 's')){
+            skinSensorMenu();
+            skinSensorBucle();
+            
+          } else if ((serialByte=='E') || (serialByte == 'e')){
+            ECGMenu();
+            ECGBucle();
+            
+          } else if ((serialByte=='P') || (serialByte == 'p')){
+            pulsioximeterMenu();
+            pulsioximeterBucle();
+            
+          } else if ((serialByte=='B') || (serialByte == 'b')){
+            bodyPositionMenu();
+            bodyPositionBucle();
+            
+          } else if ((serialByte=='T') || (serialByte == 't')){
+            temperatureMenu();
+            temperatureBucle();
+            
+          } else if ((serialByte=='N') || (serialByte == 'n')){
+            BloodPressureMenu();
+            BloodPressureBucle();             
+          }  
+       }        
+    }
+    
+//=================================================================================================================
+//=================================================================================================================
+    void initScreen(void) 
+    {  
+      printLogoEhealth(); 
+      delay(100); 
+      mainMenu();
+    }
+//=================================================================================================================
+//=================================================================================================================    
+    void mainMenu(void) 
+    {
+       lineFeed();  Serial.print(F("  --------> EHEALTH MENU OPTIONS <--------"));  lineFeed();  lineFeed();
+           
+       initialSpace();   Serial.print(F("A : AirFlow sensor options"));       lineFeed(); 
+       initialSpace();   Serial.print(F("S : Skin sensor options"));          lineFeed(); 
+       initialSpace();   Serial.print(F("E : ECG sensor options"));           lineFeed(); 
+       initialSpace();   Serial.print(F("P : Pulsioximeter sensor options")); lineFeed(); 
+       initialSpace();   Serial.print(F("B : Body position sensor options")); lineFeed(); 
+       initialSpace();   Serial.print(F("T : Temperature sensor options"));   lineFeed();     
+       initialSpace();   Serial.print(F("N : Blood Pressure sensor options"));lineFeed(); 
+    } 
+//=================================================================================================================
+//=================================================================================================================
+    void airFlowMenu(void)  
+    {  
+      lineFeed();      Serial.print(F("--------> AIRFLOW MENU OPTIONS <--------"));  lineFeed();  lineFeed(); 
+      initialSpace();  Serial.print(F("W : Wave form"));  lineFeed();
+      initialSpace();  Serial.print(F("V : Analogic value"));  lineFeed();  
+      initialSpace();  Serial.print(F("B : BACK MAIN MENU"));  lineFeed();  
+    }  
+//=================================================================================================================
+//=================================================================================================================   
+    void airFlowBucle(void) {      
+      while (state == 0) {
+        while (Serial.available()>0){  
+          serialByte=Serial.read();        
+             if ((serialByte=='W') || (serialByte == 'w')){ //Airflow sensor 
+                while(1){                
+                  serialByte=Serial.read();                     
+                  eHealth.airFlowWave(eHealth.getAirFlow());
+                     
+                  if ((serialByte== 'B') || (serialByte == 'b')) {
+                    airFlowMenu();                         
+                    break;   
+                  }               
+                }            
+              } else if ((serialByte=='V') || (serialByte == 'v')){
+                  while(1){                
+                    serialByte=Serial.read();                     
+                    Serial.print(F(" Airflow analogic value : "));
+                    Serial.println(eHealth.getAirFlow());
+                    delay(20);                     
+                       if ((serialByte== 'B') || (serialByte == 'b')) {
+                         airFlowMenu();                         
+                         break;   
+                       }
+                  }                 
+              } else if ((serialByte=='B') || (serialByte == 'b')){              
+                state = 1; 
+              } 
+           }          
+        }       
+      mainMenu();  
+    }
+//=================================================================================================================
+//=================================================================================================================    
+    void skinSensorMenu(void)  
+    {
+      lineFeed();      Serial.print(F("--------> SKIN SENSOR MENU OPTIONS <--------"));  lineFeed();  lineFeed(); 
+      outputMenu();      
+    } 
+//=================================================================================================================
+//=================================================================================================================    
+    void skinSensorBucle(void) {
+      while (state == 0) {
+          while (Serial.available()>0){  
+            serialByte=Serial.read();        
+               if ((serialByte=='S') || (serialByte == 's')){  
+                  while(1){ 
+                    
+                    lineFeed();
+                    
+                    serialByte=Serial.read();  
+                    float conductance = eHealth.getSkinConductance();  
+                    long resistance = eHealth.getSkinResistance();   
+                    float conductanceVoltage = eHealth.getSkinConductanceVoltage();   
+
+                     if (conductance == -1) {
+                       Serial.println(" No patient connection");
+                     } else {
+                       
+                       Serial.print(F(" Skin conductance value : "));
+                       Serial.println(conductance);
+                    
+                       Serial.print(F(" Skin resistance value : "));
+                       Serial.println(resistance);
+                 
+                       Serial.print(F(" Skin conductance value in volts: "));
+                       Serial.println(conductanceVoltage);
+                    
+                       delay(500); 
+                     }
+                       
+                    if ((serialByte== 'B') || (serialByte == 'b')) {
+                      skinSensorMenu();                         
+                      break;   
+                    }               
+                  } 
+
+                    
+                } else if ((serialByte=='B') || (serialByte == 'b')){              
+                  state = 1; 
+                } 
+             }          
+          }          
+        mainMenu();   
+    }  
+//=================================================================================================================
+//=================================================================================================================     
+    void ECGMenu(void) {
+      lineFeed();  Serial.print(F("--------> ECG MENU OPTIONS <--------"));  lineFeed();  lineFeed(); 
+      outputMenu();     
+    }
+//=================================================================================================================
+//=================================================================================================================    
+    void ECGBucle(void) {
+        while (state == 0) {
+          while (Serial.available()>0){  
+            serialByte=Serial.read();        
+               if ((serialByte=='S') || (serialByte == 's')){  
+                  while(1){ 
+                    
+                    lineFeed();     
+                    serialByte=Serial.read();  
+
+                    float ECG = eHealth.getECG();
+                  
+                    Serial.print("ECG value :  ");
+                    Serial.print(ECG, 2); 
+                    Serial.print(" V"); 
+                    Serial.println(""); 
+                  
+                    delay(1);  
+                    
+                    if ((serialByte== 'B') || (serialByte == 'b')) {
+                      ECGMenu();                         
+                      break;   
+                    }               
+                  }                    
+                } else if ((serialByte=='B') || (serialByte == 'b')){              
+                  state = 1; 
+                } 
+             }          
+          }          
+        mainMenu(); 
+    }  
+//=================================================================================================================
+//=================================================================================================================    
+    void pulsioximeterMenu(void)  
+    {
+      lineFeed();      Serial.print(F("--------> PULSIOXIMETER MENU OPTIONS <--------"));  lineFeed();  lineFeed(); 
+      outputMenu();     
+    }   
+//=================================================================================================================
+//=================================================================================================================      
+    void pulsioximeterBucle(void)
+    {
+        //Attach the interruptions for using the pulsioximeter.
+        PCintPort::attachInterrupt(6, readPulsioximeter, RISING);
+        eHealth.initPulsioximeter();
+
+        while (state == 0) {
+          while (Serial.available()>0){  
+            serialByte=Serial.read();        
+               if ((serialByte=='S') || (serialByte == 's')){  
+                  while(1){ 
+                    
+                    //eHealth.readPulsioximeter();                   
+
+                    lineFeed();                    
+                    serialByte=Serial.read();  
+                    Serial.print("PRbpm : "); 
+                    Serial.print(eHealth.getOxygenSaturation());
+
+                    Serial.print(" % SPo2 : ");
+                    Serial.print(eHealth.getBPM());
+  
+                    Serial.print("\n");                    
+                    delay(500); 
+                       
+                    if ((serialByte== 'B') || (serialByte == 'b')) {
+                      pulsioximeterMenu();                         
+                      break;   
+                    }               
+                  }                     
+                } else if ((serialByte=='B') || (serialByte == 'b')){              
+                  state = 1; 
+                } 
+             }          
+          }          
+        mainMenu();
+        
+        PCintPort::detachInterrupt(6);
+    }  
+//=================================================================================================================
+//=================================================================================================================    
+    void bodyPositionMenu(void)  
+    {
+      lineFeed();  Serial.print(F("--------> BODY POSTITIONMENU OPTIONS <--------"));  lineFeed();  lineFeed(); 
+      outputMenu(); 
+    } 
+//=================================================================================================================
+//=================================================================================================================     
+    void bodyPositionBucle(void)
+    {
+       while (state == 0) {
+          while (Serial.available()>0){
+
+            eHealth.initPositionSensor();
+            serialByte=Serial.read();        
+               if ((serialByte=='S') || (serialByte == 's')){  
+                  while(1){ 
+                    
+                    lineFeed();     
+                    serialByte=Serial.read();  
+                    
+                    Serial.print("Current position : ");
+                    uint8_t position = eHealth.getBodyPosition(); 
+                    eHealth.printPosition(position);
+                    delay(100);                    
+                       
+                    if ((serialByte== 'B') || (serialByte == 'b')) {
+                      bodyPositionMenu();                         
+                      break;   
+                    }               
+                  }                    
+                } else if ((serialByte=='B') || (serialByte == 'b')){              
+                  state = 1; 
+                } 
+             }          
+          }          
+        mainMenu();
+    }  
+//=================================================================================================================
+//=================================================================================================================    
+    void temperatureMenu(void)  
+    {
+      lineFeed();  Serial.print(F("--------> TEMPERATURE MENU OPTIONS <--------"));  lineFeed();  lineFeed(); 
+      outputMenu();
+    }    
+//=================================================================================================================
+//=================================================================================================================    
+    void temperatureBucle(void)
+    {
+          while (state == 0) {
+          while (Serial.available()>0){  
+            serialByte=Serial.read();        
+               if ((serialByte=='S') || (serialByte == 's')){  
+                  while(1){ 
+                    
+                    lineFeed();     
+                    serialByte=Serial.read();
+                    
+                    float temperature = eHealth.getTemperature();   
+                    Serial.print("Temperature (ºC): ");       
+                    Serial.println(temperature, 2);                    
+                    
+                    delay(1000); 
+                       
+                    if ((serialByte== 'B') || (serialByte == 'b')) {
+                      temperatureMenu();                         
+                      break;   
+                    }               
+                  }                    
+                } else if ((serialByte=='B') || (serialByte == 'b')){              
+                  state = 1; 
+                } 
+             }          
+          }          
+        mainMenu(); 
+    }  
+//=================================================================================================================
+//=================================================================================================================    
+    void BloodPressureMenu(void)  
+    {
+      lineFeed();  Serial.print(F("--------> BLOOD PRESSURE MENU OPTIONS <--------"));  lineFeed();  lineFeed(); 
+      outputMenu();    
+    }
+//=================================================================================================================
+//=================================================================================================================     
+
+    void BloodPressureBucle()
+    {
+          while (state == 0) {
+          while (Serial.available()>0){  
+            serialByte=Serial.read();        
+               if ((serialByte=='S') || (serialByte == 's')){  
+                  while(1){ 
+                    
+                    lineFeed();     
+                    serialByte=Serial.read();  
+                    Serial.println("Press On/Off button please...");
+
+                    eHealth.initBloodPressureSensor(parameter); 
+                    
+                    Serial.println("****************************");
+                    Serial.print("Systolic blood pressure value : ");
+                    Serial.println(eHealth.getSystolicPressure());
+                  
+                    Serial.println("****************************");
+                    Serial.print("Diastolic blood pressure value : ");
+                    Serial.println(eHealth.getDiastolicPressure());
+                    delay(3000); 
+                       
+                    if ((serialByte== 'B') || (serialByte == 'b')) {
+                      BloodPressureMenu();                         
+                      break;   
+                    }               
+                  }                    
+                } else if ((serialByte=='B') || (serialByte == 'b')){              
+                  state = 1; 
+                } 
+             }          
+          }          
+        mainMenu();
+    }
+    
+
+
+//=================================================================================================================
+//=================================================================================================================   
+    void outputMenu(void) {
+        initialSpace();  Serial.print(F("S : Serial output value"));  lineFeed();  
+        initialSpace();  Serial.print(F("B : BACK MAIN MENU"));  lineFeed();   
+    }
+
+//=================================================================================================================
+//=================================================================================================================
+    void printLogoEhealth(void)  
+    {  
+      starLine();      
+      starPrint();  blank();        HLeterOne();    blank();       blank();         blank();         tLeterOne();   hLeterOne();  starPrint();   lineFeed();    
+      starPrint();  eLeterTwo();    HLeterTwo();    eLeterTwo();   aLeterTwo();     lLeterTwo();     tLeterTwo();   hLeterTwo();  starPrint();   lineFeed();
+      starPrint();  eLeterThree();  HLeterThree();  eLeterThree(); aLeterThree();   lLeterThree();   tLeterThree(); hLeterThree();  starPrint();   lineFeed();
+      starPrint();  eLeterFour();   HLeterFour();   eLeterFour();  aLeterFour();    lLeterFour();    tLeterFour();  hLeterFour();  starPrint();   lineFeed();
+      starPrint();  eLeterFive();   HLeterFive();   eLeterFive();  aLeterFive();    lLeterFive();    tLeterFive();  hLeterFive();  starPrint();   lineFeed();
+      starPrint();  eLeterSix();    HLeterSix();    eLeterSix();   aLeterSix();     lLeterSix();     tLeterSix();   hLeterSix();  starPrint();   lineFeed();
+      starLine();
+    }
+//=================================================================================================================
+//=================================================================================================================
+    void eLeterTwo(void)   { Serial.print(F(" _____  "));  }
+    void eLeterThree(void) { Serial.print(F("|  __ | "));  }  
+    void eLeterFour(void)  { Serial.print(F("|  ___| "));  }  
+    void eLeterFive(void)  { Serial.print(F("| |___  "));  }
+    void eLeterSix(void)   { Serial.print(F("|_____| "));  }
+    
+    void HLeterOne(void)   { Serial.print(F(" _    _  ")); }
+    void HLeterTwo(void)   { Serial.print(F("| |  | | ")); }
+    void HLeterThree(void) { Serial.print(F("| |__| | ")); }  
+    void HLeterFour(void)  { Serial.print(F("|  __  | ")); }  
+    void HLeterFive(void)  { Serial.print(F("| |  | | ")); }
+    void HLeterSix(void)   { Serial.print(F("|_|  |_| ")); }   
+
+    
+    void aLeterTwo(void)   { Serial.print(F(" ______  ")); }
+    void aLeterThree(void) { Serial.print(F("|      | ")); }  
+    void aLeterFour(void)  { Serial.print(F("|  {}  | ")); }  
+    void aLeterFive(void)  { Serial.print(F("|  __  | ")); }
+    void aLeterSix(void)   { Serial.print(F("|_|  |_| ")); }
+    
+    void lLeterTwo(void)   { Serial.print(F(" _      "));  }
+    void lLeterThree(void) { Serial.print(F("| |     "));  }  
+    void lLeterFour(void)  { Serial.print(F("| |     "));  }  
+    void lLeterFive(void)  { Serial.print(F("| |____ "));  }
+    void lLeterSix(void)   { Serial.print(F("|______|"));  }
+    
+    void tLeterOne(void)   { Serial.print(F("    _     "));}
+    void tLeterTwo(void)   { Serial.print(F(" _| |__  ")); }
+    void tLeterThree(void) { Serial.print(F("(_   __) ")); }  
+    void tLeterFour(void)  { Serial.print(F("  | |    ")); }  
+    void tLeterFive(void)  { Serial.print(F("  | |__  ")); }
+    void tLeterSix(void)   { Serial.print(F("  |____) ")); }
+    
+    void hLeterOne(void)   { Serial.print(F(" _       "));}
+    void hLeterTwo(void)   { Serial.print(F("| |      ")); }
+    void hLeterThree(void) { Serial.print(F("| |___   ")); }  
+    void hLeterFour(void)  { Serial.print(F("|  _  |  ")); }  
+    void hLeterFive(void)  { Serial.print(F("| | | |  ")); }
+    void hLeterSix(void)   { Serial.print(F("|_| |_|  ")); }
+
+//=================================================================================================================
+//=================================================================================================================  
+    
+    void blank(void)   { Serial.print(F("        "));}
+
+//=================================================================================================================
+//=================================================================================================================    
+    void initialSpace(void)  
+    {      
+        Serial.print(F("        "));  
+    }   
+//=================================================================================================================
+//=================================================================================================================    
+    void starPrint(void)  
+    {
+      Serial.print(F("* ")); 
+    }
+//=================================================================================================================
+//=================================================================================================================    
+    void lineFeed(void)  
+    {
+      Serial.print(F("\n")); 
+    }
+//=================================================================================================================
+//=================================================================================================================    
+    void starLine(void)  
+    {
+      for (int i = 0; i < 63; i++) 
+      {
+        Serial.print(F("*"));
+      }      
+      lineFeed();
+    }        
+//=================================================================================================================
+//=================================================================================================================
+
+int freeRam () {
+  extern int __heap_start, *__brkval; 
+  int v; 
+  return (int) &v - (__brkval == 0 ? (int) &__heap_start : (int) __brkval); 
+}
+
+//=================================================================================================================
+//=================================================================================================================
+
+//Include always this code for using the pulsioximeter sensor
+//=========================================================================
+void readPulsioximeter(){  
+  
+  cont ++;
+ 
+  if (cont == 30) { //Get only one of 25 measures to reduce the latency
+    eHealth.readPulsioximeter();  
+    cont = 0;
+  }
+}
+
+
+ +

SmartPhone Application

+
ehealth_icon_op3
+

The wifi module may perform direct communications with iPhone and Android devices without the need of an intermediate router by creating an Adhoc network between them.

+

We have developed the application e-Health Sensor Plattform, for both iPhone and Android platforms. The application may be also downloaded from the official App markets or from the Libelium website for free: http://www.cooking-hacks.com/apps

+

Official app markets URL’s:

+ +

Connecting to an iPhone

+

Installation:

+

a) Download the application from App Store:

+

b) Download the application (e-Health.ipa) from the Libelium website: http://www.libelium.com/apps

+
  • Then double click on the icon, or right click and open with iTunes.
  • +
  • Inside iTunes, on the left panel, click on DEVICES->Your Device.
  • +
  • Select on the top “Apps”, and select Sync Apps. Drag into the desired screen e-Health app. +
      +
    • Respiratory rate chart
    • +
    • Electrocardiogram: is necessary to correctly set the delay between frames for the correct measurement of electrocardiogram
    • +
    +
      +
    • Temperature
    • +
    • Pulse
    • +
    • Oxygen
    • +
    • Conductivity
    • +
    • Resistance
    • +
    • Airflow
    • +
    +
      +
    • Systolic Pressure
    • +
    • Diastolic Pressure
    • +
    • Glucometer
    • +
    +
      +
    • From the Android device, go to Android Market.
    • +
    • Search “” or “” and press enter
    • +
    +
      +
    • Insert it to the SD card of your Android device.
    • +
    • Then explore the SD card in your Android device and install the application. You can explore the SD card with “Astro”, “ES Explora”, or “File Explorer” applications.
    • +
    +
      +
    • Respiratory rate chart
    • +
    • Electrocardiogram: is necessary to correctly set the delay between frames for the correct measurement of electrocardiogram
    • +
    +
      +
    • Temperature
    • +
    • Pulse
    • +
    • Oxygen
    • +
    • Conductivity
    • +
    • Resistance
    • +
    • Airflow
    • +
    +
      +
    • Systolic Pressure
    • +
    • Diastolic Pressure
    • +
    • Glucometer
    • +
    + + + + +
  • +

    Once installed, the app appears in your iPhone/iPod screen.

    +

    iPhone app tutorial

    +

    The use of the app is very simple, first you have to connect to one of the Arduino nodes selecting it in Settings->Wi-Fi, and then launch the application.

    +

    To connect to the network created by the wifi module of Arduino: Go to Settings->Wi-Fi and select iPHONE_ADHOC.

    +
    iphone_app
    +

    Once connected, you can launch the App.

    +
    +
    iphone_app iphone_app
    +
    +
     
    +

    The App shows the information the nodes are sending which contains the sensor data gathered.

    +

    The first tab “Charts” shows:

    +

    The “Current data” tab, shows data that is in continuous change:

    +
    +
    iphone_app iphone_app
    +
    +
     
    +

    The “Tests” tab shows the information about:

    +

    Finally, in the “Movement” tab shows the position of the body.

    +
    iphone_app
    +
    +

    NOTE:The measurement of glucose has not been implemented in this example because both processes use UART communication and can cause malfunction

    +
    +

    Example

    +

    Arduino

    +

    The Arduino code used in this program is presented next:

    +
    Show Code +
    /*
    + *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
    + *
    + *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
    + *  users to perform biometric and medical applications by using 9 different 
    + *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
    + *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
    + *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
    + *  Patient Position (Accelerometer)."  
    + *
    + *  Explanation: This example shows the way to communicate with  
    + *  the Arduino Wifi Demo iPhone app. 
    + *
    + *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
    + *  http://www.libelium.com
    + *
    + *  This program is free software: you can redistribute it and/or modify
    + *  it under the terms of the GNU General Public License as published by
    + *  the Free Software Foundation, either version 3 of the License, or
    + *  (at your option) any later version.
    + *
    + *  This program is distributed in the hope that it will be useful,
    + *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    + *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    + *  GNU General Public License for more details.
    + *
    + *  You should have received a copy of the GNU General Public License
    + *  along with this program.  If not, see .
    + *
    + *  Version 0.1
    + *  Author: Luis Martin & Ahmad Saad 
    + */
    + 
    +
    +#include < PinChangeInt.h >
    +#include < eHealth.h >
    +
    +char recv[256];
    +float parameter = 0.098;
    +uint8_t cont = 0;
    +
    +
    +void setup(){ 
    +
    +  //eHealth.readGlucometer();
    +  Serial.begin(9600);
    +  eHealth.initPulsioximeter();
    +  eHealth.initPositionSensor(); 
    +} 
    +
    +void loop(){ 
    +
    +  Serial.print("$$$"); 
    +  check();  
    +
    +  // 1. Configure the transport protocol (UDP, TCP, FTP, HTTP...)  
    +  Serial.print("set i p 3\r");  check();   
    +  // 2. Configure the way the modules will resolve the IP address. 
    +  Serial.print("set i d 2\r");  check();   
    +  // 3. Configure how to connect the AP. 
    +  Serial.print("set w a 6\r");  check();   
    +  // 3.1 Sets the name of the ADhoc network.  
    +  Serial.print("set w s iPHONE_ADHOC\r");  check();   
    +  // 3.2 Sets the channel of the ADhoc network     
    +  Serial.print("set w c 6\r");  check();
    +
    +  Serial.print("set w j 4\r");  check();
    +  Serial.print("save\r");  check();
    +  Serial.print("exit\r");  check();
    +  Serial.print("$$$");  check();
    +  // Configures UDP host and ports.
    +  Serial.print("set i h 255.255.255.255\r");  check();
    +  Serial.print("set i r 12345\r");  check();
    +  Serial.print("set i l 2000\r");  check();
    +  // Checks if everything is Ok, even if It's correctly connected.
    +
    +  // Exits from command mode, and then the UDP messages 
    +  // can be sent and received.
    +  Serial.print("exit\r");
    +  check();
    +
    +  //Attach the inttruptions for using the pulsioximeter.     
    +  PCintPort::attachInterrupt(6, readPulsioximeter, RISING);
    +  delay(1000);  
    +
    +
    +  while(1){     
    +
    +    eHealth.initBloodPressureSensor(0.1);
    +
    +    //1. Read from eHealth. 
    +    int airFlow = eHealth.getAirFlow();     
    +    float temperature = eHealth.getTemperature();     
    +    float conductance = eHealth.getSkinConductance();   
    +    float resistance = eHealth.getSkinResistance();
    +    float conductanceVol = eHealth.getSkinConductanceVoltage();
    +    int BPM = eHealth.getBPM();     
    +    int SPO2 = eHealth.getOxygenSaturation();     
    +    uint8_t pos = eHealth.getBodyPosition();      
    +    int syst = eHealth.getSystolicPressure();
    +    int diast = eHealth.getDiastolicPressure();     
    +    float ECG = eHealth.getECG();
    +    //uint8_t glucose = eHealth.glucoseDataVector[0].glucose;
    +
    +    // 2. Send data to the Android smartphone    
    +    Serial.print(int(airFlow));         Serial.print("#");
    +    Serial.print(ECG);                  Serial.print("#");
    +    Serial.print(temperature);          Serial.print("#");
    +    Serial.print(int(BPM));             Serial.print("#");
    +    Serial.print(int(SPO2));            Serial.print("#");
    +    Serial.print(conductance);          Serial.print("#");
    +    Serial.print(int(resistance));      Serial.print("#");
    +    Serial.print(int(airFlow));         Serial.print("#");
    +    Serial.print(syst);                 Serial.print("#");
    +    Serial.print(diast);                Serial.print("#");
    +    Serial.print(int(0));               Serial.print("#");
    +    Serial.print(int(pos));             Serial.print("#");
    +    Serial.print("\n");    
    +    
    +    // Reduce this delay for more data rate
    +    delay(100);  
    +  }
    +
    +}
    +
    +//=========================================================================
    +
    +void check(){
    +  cont=0; 
    +  delay(500);
    +  while (Serial.available()>0)
    +  {
    +    recv[cont]=Serial.read(); 
    +    delay(10);
    +    cont++;
    +  }
    +  recv[cont]='\0';
    +  Serial.println(recv);
    +  Serial.flush(); 
    +  delay(100);
    +}
    +
    +//Include always this code when using the pulsioximeter sensor
    +//=========================================================================
    +void readPulsioximeter(){  
    +
    +  cont ++;
    +
    +  if (cont == 50) { //Get only one 50 measures to reduce the latency
    +    eHealth.readPulsioximeter();  
    +    cont = 0;
    +  }
    +}
    +
    +
    +
    +	
    +
    +

    Connecting to an Android

    +

    Installation:

    +

    a) Download the application from Android Market:

    +

    b) Download the application () from Libelium website: http://www.libelium.com/apps

    +

    Once installed, the app appears in your device screen.

    +

    Android app tutorial

    +

    The use of the app is very simple, first you have to create an AP from your Android device and then set Waspmote to connect to it.

    +

    To create the AP from the Android device:

    +

    Go to Settings->Tethering & Portable Hotspot or Settings->Wifi-> My Wifi Zone (depending of the version of mobile).

    +
    android_app
    +Then configure the WLAN hotspot (name= ANDROID, Security= Open). +
    android_app
    +

    Finally, enable Portable WLAN hotspot (or My Wifi Zone), and Arduino will connect to the Android device. Once connected, you can launch the e-Health App.

    +
    +
    android_app android_app
    +
    +
     
    +

    The App shows the information the nodes are sending which contains the sensor data gathered.

    +

    The first tab “Charts” shows:

    +

    The “Current data” tab, shows data that is in continuous change:

    +
    +
    android_app android_app +
     
    +
    +
     
    +
    +
     
    +

    The “Tests” tab shows the information about:

    +

    Finally, in the “Movement” tab shows the position of the body.

    +
    android_app
    +
    +

    NOTE:The measurement of glucose has not been implemented in this example because both processes use UART communication and can cause malfunction

    +
    +

    Example

    +

    Arduino

    +

    The Arduino code used in this program is presented next:

    +
    Show Code +
    /*
    + *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
    + *
    + *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
    + *  users to perform biometric and medical applications by using 9 different 
    + *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
    + *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
    + *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
    + *  Patient Position (Accelerometer)."  
    + *
    + *  Explanation: This example shows the way to communicate with  
    + *  the Arduino Wifi Demo Android app. 
    + *
    + *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
    + *  http://www.libelium.com
    + *
    + *  This program is free software: you can redistribute it and/or modify
    + *  it under the terms of the GNU General Public License as published by
    + *  the Free Software Foundation, either version 3 of the License, or
    + *  (at your option) any later version.
    + *
    + *  This program is distributed in the hope that it will be useful,
    + *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    + *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    + *  GNU General Public License for more details.
    + *
    + *  You should have received a copy of the GNU General Public License
    + *  along with this program.  If not, see .
    + *
    + *  Version 0.1
    + *  Author: Luis Martin & Ahmad Saad 
    + */
    + 
    + 
    +#include < PinChangeInt.h >
    +#include < eHealth.h > 
    +
    +char recv[128];
    +float parameter = 0.098;
    +uint8_t cont = 0;
    +
    +
    +void setup()
    +{ 
    +  Serial.begin(9600);
    +  
    +  eHealth.initPulsioximeter();
    +  eHealth.initPositionSensor(); 
    +  
    +  //Attach the inttruptions for using the pulsioximeter.   
    +  PCintPort::attachInterrupt(6, readPulsioximeter, RISING);
    +  delay(1000);
    +  
    +}
    +
    +void loop()
    +{
    +  while (Serial.available()>0) {}
    +  // Enters in command mode    
    +    Serial.print("$$$"); check();  
    +  // Sets DHCP and TCP protocol
    +    Serial.print("set ip dhcp 1\r"); check();
    +    Serial.print("set ip protocol 1\r"); check();
    +  // Configures the way to join the network AP
    +    Serial.print("set wlan join 0\r"); check();
    +    Serial.print("join ANDROID\r"); check();
    +  
    +    Serial.print("set i h 255.255.255.255\r"); delay(1000);
    +    
    +    Serial.print("set i r 12345\r"); check();
    +    Serial.print("set i l 2000\r"); check();
    +    Serial.print("exit\r"); check();
    +
    +    while(1){     
    +    
    +      eHealth.initBloodPressureSensor(0.098);
    +      
    +      //1. Read from eHealth. 
    +       int airFlow = eHealth.getAirFlow();     
    +       float temperature = eHealth.getTemperature();     
    +       float conductance = eHealth.getSkinConductance();   
    +       float resistance = eHealth.getSkinResistance();
    +       float conductanceVol = eHealth.getSkinConductanceVoltage();
    +       int BPM = eHealth.getBPM();     
    +       int SPO2 = eHealth.getOxygenSaturation();     
    +       uint8_t pos = eHealth.getBodyPosition();      
    +       int syst = eHealth.getSystolicPressure();
    +       int diast = eHealth.getDiastolicPressure();     
    +       float ECG = eHealth.getECG();
    +       //uint8_t glucose = eHealth.glucoseDataVector[0].glucose;      
    +
    +      //Data sensor must be sent in this order to mobile android application 
    +      Serial.print(int(airFlow));     Serial.print("#");
    +      Serial.print(ECG);              Serial.print("#");
    +      Serial.print(syst);             Serial.print("#");
    +      Serial.print(diast);            Serial.print("#");
    +      Serial.print(int(0));           Serial.print("#"); //Glucose is not implemented yet
    +      Serial.print(temperature);      Serial.print("#");
    +      Serial.print(int(BPM));         Serial.print("#");
    +      Serial.print(int(SPO2));        Serial.print("#");
    +      Serial.print(conductance);      Serial.print("#");
    +      Serial.print(int(resistance));  Serial.print("#");
    +      Serial.print(int(airFlow));     Serial.print("#");
    +      Serial.print(int(pos));         Serial.print("#");
    +      Serial.print("\n");    
    +    
    +      // Reduce this delay for more data rate
    +      delay(250);  
    +  }
    +}
    +
    +void check(){
    +  cont=0; delay(500);
    +  while (Serial.available()>0)
    +  {
    +     recv[cont]=Serial.read(); delay(10);
    +     cont++;
    +  }
    +  recv[cont]='\0';
    +  Serial.println(recv);
    +  Serial.flush(); delay(100);
    +}
    +
    +
    +
    +//Include always this code when using the pulsioximeter sensor
    +//=========================================================================
    +void readPulsioximeter(){  
    +  
    +  cont ++;
    + 
    +  if (cont == 50) { //Get only one 50 measures to reduce the latency
    +    eHealth.readPulsioximeter();  
    +    cont = 0;
    +  }
    +}
    +
    +
    +	
    +
    + +
     
    + +

    6. Sending the data to the Cloud.

    +

    Telemedicine is the use of telecommunication and information technologies in order to provide clinical health care at a distance. It helps eliminate distance barriers and can improve access to medical services that would often not be consistently available in distant rural communities. It is also used to save lives in critical care and emergency situations.

    +

    Although there were distant precursors to telemedicine, it is essentially a product of 20th century telecommunication and information technologies. These technologies permit communications between patient and medical staff with both convenience and fidelity, as well as the transmission of medical, imaging and health informatics data from one site to another.

    +

    eHealth Sensor platform allows to share medical data with the cloud, and perform real-time diagnosis. Thanks to many communications modules can send data over several transmission protocols

    +

    Wifi

    +

    We will use the wifi module Roving RN-171. This module fits in the XBee socket of our Communication Shield and allows to connect your Arduino/RasberryPi shield to a WiFi network.

    +
    e_health+placa
    +

    Example code

    +

    Wifi examples shows the way to communicate with the Arduino Wifi Demo Android and iPhone app.

    +

    Refer to Wifi tutorials (Arduino) (Raspberry) for more information.

    +

    Bluetooth

    +

    Bluetooth Modules for Arduino/Raspberry are able to be plugged into the XBee Shield and get a serial communication between the computer and an Arduino/RasberryPi board through Bluetooth protocol.

    +
    xbee2
    +

    Bluetooth module PRO for Arduino supports Serial Port Profile (SPP) to exchange data with other devices. This profile allows to create connections to another device using the same profile (p2p connection). It sends data to the specified device. This device is the one which the connection has been created to.

    +

    Refer to Bluetooth tutorials (Arduino) (Raspberry) for more information.

    +

    Zigbee / 802.15.4

    +

    The Arduino Xbee shield allows your Arduino/RasberryPi board to communicate wirelessly using Zigbee.

    +
    xbee
    +

    Example code

    +

    This example shows the way to communicate with the Arduino using Zigbee protocol. Upload the next code:

    +
    Show Code +
    /*
    + *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
    + *
    + *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
    + *  users to perform biometric and medical applications by using 9 different 
    + *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
    + *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
    + *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
    + *  Patient Position (Accelerometer)."  
    + *
    + *  Explanation: This example shows the way to communicate with  
    + *  the Arduino using ZigBee protocol. 
    + *
    + *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
    + *  http://www.libelium.com
    + *
    + *  This program is free software: you can redistribute it and/or modify
    + *  it under the terms of the GNU General Public License as published by
    + *  the Free Software Foundation, either version 3 of the License, or
    + *  (at your option) any later version.
    + *
    + *  This program is distributed in the hope that it will be useful,
    + *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    + *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    + *  GNU General Public License for more details.
    + *
    + *  You should have received a copy of the GNU General Public License
    + *  along with this program.  If not, see .
    + *
    + *  Version 0.1
    + *  Author: Luis Martin & Ahmad Saad 
    + */
    + 
    + 
    +#include < PinChangeInt.h >
    +#include < eHealth.h >
    +
    +char recv[128];
    +uint8_t cont = 0;
    +
    +//  Note :  The Xbee modules must be configured previously. 
    +//  See the next link http://www.cooking-hacks.com/index.php/documentation/tutorials/arduino-xbee-shield 
    +
    +void setup()
    +{ 
    +  Serial.begin(9600);
    +  
    +  eHealth.initPulsioximeter();
    +  eHealth.initPositionSensor(); 
    +  
    +  //Attach the inttruptions for using the pulsioximeter.   
    +  PCintPort::attachInterrupt(6, readPulsioximeter, RISING);
    +  delay(1000);
    +  
    +}
    +
    +void loop()
    +{    
    +      
    +      //1. Read from eHealth. 
    +       int airFlow = eHealth.getAirFlow();     
    +       float temperature = eHealth.getTemperature();     
    +       float conductance = eHealth.getSkinConductance();   
    +       float resistance = eHealth.getSkinResistance();
    +       int BPM = eHealth.getBPM();     
    +       int SPO2 = eHealth.getOxygenSaturation();     
    +       uint8_t pos = eHealth.getBodyPosition();      
    +    
    +
    +      Serial.print(int(airFlow));     Serial.print("#");
    +      Serial.print(temperature);      Serial.print("#");
    +      Serial.print(int(BPM));         Serial.print("#");
    +      Serial.print(int(SPO2));        Serial.print("#");
    +      Serial.print(conductance);      Serial.print("#");
    +      Serial.print(int(resistance));  Serial.print("#");
    +      Serial.print(int(pos));         Serial.print("#");
    +      Serial.print("\n");    
    +    
    +      // Reduce this delay for more data rate
    +      delay(250);   
    +}
    +
    +void check(){
    +  cont=0; delay(500);
    +  while (Serial.available()>0)
    +  {
    +     recv[cont]=Serial.read(); delay(10);
    +     cont++;
    +  }
    +  recv[cont]='\0';
    +  Serial.println(recv);
    +  Serial.flush(); delay(100);
    +}
    +
    +
    +
    +//Include always this code when using the pulsioximeter sensor
    +//=========================================================================
    +void readPulsioximeter(){  
    +  
    +  cont ++;
    + 
    +  if (cont == 50) { //Get only one 50 measures to reduce the latency
    +    eHealth.readPulsioximeter();  
    +    cont = 0;
    +  }
    +}
    +
    +
    +		
    +
    +
    +

    NOTE: The Xbee modules must be configured previously. See the next link http://www.cooking-hacks.com/index.php/documentation/tutorials/arduino-xbee-shield

    +
    +

    Refer to XBee tutorials (Arduino) (Raspberry) for more information.

    +

    GPRS

    +

    GPRS Quadband Module for Arduino/Raspberry (SIM900) offers GPRS connection to your Arduino/RasberryPi board. You can send your data by SMS or do missed calls from your Arduino to mobile devices... or to another Arduino/RasberryPi connected to this module.

    +
    e_health+placa_Verde
    +

    Example code

    +

    This example shows the way to send a text message with the corporal temperature using the GPRS module. Upload the next code:

    +
    Show Code +
    /*
    + *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
    + *
    + *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
    + *  users to perform biometric and medical applications by using 9 different 
    + *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
    + *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
    + *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
    + *  Patient Position (Accelerometer)."  
    + *
    + *  Explanation: This example shows the way to send a text message with 
    + *  the corporal temperature using the GPRS module. 
    + *
    + *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
    + *  http://www.libelium.com
    + *
    + *  This program is free software: you can redistribute it and/or modify
    + *  it under the terms of the GNU General Public License as published by
    + *  the Free Software Foundation, either version 3 of the License, or
    + *  (at your option) any later version.
    + *
    + *  This program is distributed in the hope that it will be useful,
    + *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    + *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    + *  GNU General Public License for more details.
    + *
    + *  You should have received a copy of the GNU General Public License
    + *  along with this program.  If not, see .
    + *
    + *  Version 0.1
    + *  Author: Luis Martin & Ahmad Saad 
    + */
    + 
    +// For more information about the GPRS shield please see our tutorial
    +// in cooking-hacks web site. http://www.cooking-hacks.com
    +
    +
    +#include < eHealth.h >
    +
    +// the pin to switch on the module (without press on button) 
    +int pinModuleOn = 2;      
    +
    +// ********* is the number to call
    +char phoneNumber[]="**********";    
    +
    +
    +void switchModule(){       
    +  digitalWrite(pinModuleOn,HIGH);
    +  delay(2000);
    +  digitalWrite(pinModuleOn,LOW);
    +}
    +
    +void setup() {
    +
    +  // UART baud rate
    +  Serial.begin(115200);               
    +  delay(2000);
    +
    +  // Sitches the module ON
    +  // switchModulo();    
    +
    +  for (int i=0;i < 5;i++){
    +    Serial.println("Push the button");
    +    delay(5000);
    +  }
    +  // Sets the SMS mode to text
    +  Serial.println("AT+CMGF=1");         
    +  delay(100);
    +}
    +
    +void loop(){
    +
    +  delay(100);
    +  float temperature = eHealth.getTemperature();     
    +
    +  delay(1500);
    +  // send the SMS number 
    +  Serial.print("AT+CMGS=\"");     
    +  Serial.print(phoneNumber);
    +  Serial.println("\"");
    +  // the SMS body 
    +  while(Serial.read()!='>');      
    +  Serial.print(temperature);
    +
    +  delay(1000);
    +  //sends ++
    +  Serial.write(0x1A);       
    +  Serial.write(0x0D);
    +  Serial.write(0x0A);
    +  delay(5000);
    +
    +}
    +
    +		
    +
    +

    Refer to GPRS tutorials (Arduino) (Raspberry) for more information.

    +

    3G

    + +

    The new 3G shield for Arduino/Raspberry enables the connectivity to high speed WCDMA and HSPA cellular networks in order to make possible the creation of the next level of worldwide interactivity projects inside the new "Internet of Things" era.

    +
    gps_e_health
    +
    e_health_con_conectores
    +

    Example code

    +

    This example how to send data using 3G shield and making a connection to a server. Upload the next code:

    +
    Show Code +
    /*
    + *  eHealth sensor platform for Arduino and Raspberry from Cooking-hacks.
    + *
    + *  Description: "The e-Health Sensor Shield allows Arduino and Raspberry Pi 
    + *  users to perform biometric and medical applications by using 9 different 
    + *  sensors: Pulse and Oxygen in Blood Sensor (SPO2), Airflow Sensor (Breathing),
    + *  Body Temperature, Electrocardiogram Sensor (ECG), Glucometer, Galvanic Skin
    + *  Response Sensor (GSR - Sweating), Blood Pressure (Sphygmomanometer) and 
    + *  Patient Position (Accelerometer)."  
    + *
    + *  Explanation: This example how to send data using 3G shield and 
    + *  making a connection to a server. 
    + *
    + *  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
    + *  http://www.libelium.com
    + *
    + *  This program is free software: you can redistribute it and/or modify
    + *  it under the terms of the GNU General Public License as published by
    + *  the Free Software Foundation, either version 3 of the License, or
    + *  (at your option) any later version.
    + *
    + *  This program is distributed in the hope that it will be useful,
    + *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    + *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    + *  GNU General Public License for more details.
    + *
    + *  You should have received a copy of the GNU General Public License
    + *  along with this program.  If not, see .
    + *
    + *  Version 0.1
    + *  Author: Luis Martin & Ahmad Saad 
    + */
    +
    +// For more information about the 3G shield please see our tutorial
    +// in cooking-hacks web site. http://www.cooking-hacks.com
    +
    +#include < eHealth.h >
    +
    +
    +char data[512];
    +char tosend[128];
    +int led = 13;
    +int onModulePin = 2;        // the pin to switch on the module (without press on button) 
    +
    +int x = 0;
    +
    +char name[20];
    +
    +char server[ ]="192.198.1.1"; //Your server IP address
    +char port[ ]="5555"; // Your port. 
    +
    +void switchModule(){
    +  digitalWrite(onModulePin,HIGH);
    +  delay(2000);
    +  digitalWrite(onModulePin,LOW);
    +}
    +
    +void setup(){
    +
    +  Serial.begin(115200);         // UART baud rate
    +  delay(2000);
    +  pinMode(led, OUTPUT);
    +  pinMode(onModulePin, OUTPUT);
    +  switchModule();              // switches the module ON
    +
    +  for (int i=0;i< 5;i++){
    +    delay(5000);
    +  } 
    +
    +  Serial.println("AT+CGSOCKCONT=1,\"IP\",\"internetmas\"");
    +  Serial.flush();
    +  x=0;
    +  do
    +  {
    +    while(Serial.available()==0);
    +    data[x]=Serial.read();  
    +    x++;  
    +  } while(!(data[x-1]=='K'&&data[x-2]=='O')); //waits for response "Network opened"
    +
    +
    +}
    +
    +void loop()
    +{
    +  float temperature = eHealth.getTemperature();    
    +  int longitud = sprintf(tosend,"%d", temperature); 
    +
    +  Serial.print("AT+NETOPEN=\"TCP\",");
    +  //Opens the socket with the type of protocol and the port 
    +  Serial.println(port);        
    +  Serial.flush();
    +  x=0;
    +  
    +  do
    +  {
    +    while(Serial.available()==0);
    +    data[x]=Serial.read();  
    +    x++;  
    +  }
    +  while(!(data[x-1]=='K'&&data[x-2]=='O'));        //waits for response "Network opened"
    +
    +  Serial.print("AT+TCPCONNECT=\""); //Connects with the server
    +  Serial.print(server);
    +  Serial.print("\",");    
    +  Serial.println(port);
    +
    +  Serial.flush();
    +  while(Serial.read()!='K');  
    +
    +  Serial.print("AT+TCPWRITE=");
    +  Serial.println(longitud, DEC);    //Sends TCP data
    +  Serial.flush();
    +
    +
    +
    +  do 
    +  { 
    +    while (Serial.available() == 0) {};      
    +    //Serial.println(char(Serial.read()));      
    +  } while(Serial.read()!='>');  
    +
    +  Serial.println(tosend); 
    +
    +  x=0;
    +
    +  do
    +  {
    +    while(Serial.available()==0);
    +    data[x]=Serial.read();  
    +    x++;                        
    +  }
    +  while(!(data[x-1]=='K'&&data[x-2]=='O'));
    +
    +  Serial.println("AT+NETCLOSE"); //Opens the socket with the type of protocol and the port 
    +  Serial.flush();
    +  while(Serial.read()!='K'); 
    +
    +  while(1);
    +
    +}
    +
    +
    +		
    +
    +

    Camera for Photo Diagnosis

    +

    This module allows to connect a camera for video recording and taking photos. Once saved the video or image file can be sent to an FTP or FTPS as you'll see later. Images with 3G Module tutorial.

    +

    Camera for the 3G shield

    +
    3G camera
    +

    Insert the camera with metallic contacts facing up

    +
    3G camera
    +

    Example Code

    +

    Take photos is very easy. Upload the next code.

    +
    Show Code +
    /*
    +*  Copyright (C) 2012 Libelium Comunicaciones Distribuidas S.L.
    +*  http://www.libelium.com
    +*
    +*  This program is free software: you can redistribute it and/or modify
    +*  it under the terms of the GNU General Public License as published by
    +*  the Free Software Foundation, either version 3 of the License, or
    +*  (at your option) any later version.
    +*
    +*  This program is distributed in the hope that it will be useful,
    +*  but WITHOUT ANY WARRANTY; without even the implied warranty of
    +*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    +*  GNU General Public License for more details.
    +*
    +*  You should have received a copy of the GNU General Public License
    +*  along with this program.  If not, see .
    +*
    +*  Version 0.1
    +*  Author: Alejandro Gállego
    +*/
    +
    +
    +int led = 13;
    +int onModulePin = 2;        // the pin to switch on the module (without press on button) 
    +
    +int x = 0;
    +
    +char name[20];
    +
    +void switchModule(){
    +    digitalWrite(onModulePin,HIGH);
    +    delay(2000);
    +    digitalWrite(onModulePin,LOW);
    +}
    +
    +void setup(){
    +
    +    Serial.begin(115200);                // UART baud rate
    +    delay(2000);
    +    pinMode(led, OUTPUT);
    +    pinMode(onModulePin, OUTPUT);
    +    switchModule();                    // switches the module ON
    +
    +    for (int i=0;i < 5;i++){
    +        delay(5000);
    +    }   
    +
    +    Serial.println("AT+CCAMS");     //starts the camera
    +    while(Serial.read()!='K');
    +
    +    Serial.println("AT+CCAMSETD=640,480");     //sets VGA (640*480) resolution
    +    while(Serial.read()!='K');
    +    
    +    Serial.println("AT+FSLOCA=0");     //stores the image file in the 3G module
    +    while(Serial.read()!='K');
    +    
    +
    +}
    +
    +void loop(){
    +
    +    delay(1500);
    +    while(Serial.available()!=0){
    +        Serial.read();
    +    }
    +    Serial.println("AT+CCAMTP");     //takes a picture, but not saved it
    +    while(Serial.read()!='K');  
    +
    +    Serial.println("AT+CCAMEP");     // saves the picture into C:/Picture    
    +    Serial.flush();     
    +    while(Serial.read()!='/');
    +    while(Serial.read()!='/');
    +
    +    x=0;
    +    do{
    +        while(Serial.available()==0);
    +        name[x]=Serial.read();
    +        x++;
    +    }while(x < 19);
    +
    +    while(Serial.read()!='K');  
    +    Serial.println(name); 
    +
    +    Serial.println("AT+CCAME");     // stops the camera
    +    while(Serial.read()!='K');  
    +
    +    while(1);
    +    
    +}
    +
    +	
    +
    +

    Example picture 1: (Snake bite telemedicine simulation)

    +

    Example picture 2: (Patient photo)

    +

    Snake bites occur when a snake bites the skin. They are medical emergencies if the snake is poisonous.

    +

    Sending images via 3g is a simple and rapid method for medical consultation

    +

    Refer to 3G tutorials (Arduino) (Raspberry) for more information.

    + +
     
    + +

    7. Forum.

    +

    There is a forum available in which you can get support for e-Health platform.

    + +

    8. Get the shields and sensors.

    +

    Kit

    +

    Sensors

    + +
     
    +

     

    +
    +
     
    + +
    +
    + +
    +
    + +
    +
    + + + + + + + \ No newline at end of file diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/-vXAXn9Iqy1.js b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/-vXAXn9Iqy1.js new file mode 100644 index 0000000..d0c0859 --- /dev/null +++ b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/-vXAXn9Iqy1.js @@ -0,0 +1,22 @@ +/*1365392748,178142527*/ + +if (self.CavalryLogger) { CavalryLogger.start_js(["4ZPFB"]); } + +__d("legacy:fbdesktop-detect",["FBDesktopDetect"],function(a,b,c,d){a.FbDesktopDetect=b('FBDesktopDetect');},3); +__d("IntlUtils",["AsyncRequest","Cookie","goURI"],function(a,b,c,d,e,f){var g=b('AsyncRequest'),h=b('Cookie'),i=b('goURI'),j={setXmode:function(k){(new g()).setURI('/ajax/intl/save_xmode.php').setData({xmode:k}).setHandler(function(){document.location.reload();}).send();},setAmode:function(k){new g().setURI('/ajax/intl/save_xmode.php').setData({amode:k,app:false}).setHandler(function(){document.location.reload();}).send();},setLocale:function(k,l,m,n){if(!m)m=k.options[k.selectedIndex].value;j.saveLocale(m,true,null,l,n);},saveLocale:function(k,l,m,n,o){new g().setURI('/ajax/intl/save_locale.php').setData({aloc:k,source:n,app_only:o}).setHandler(function(p){if(l){document.location.reload();}else i(m);}).send();},setLocaleCookie:function(k,l){h.set('locale',k,7*24*3600000);i(l);}};e.exports=j;}); +__d("legacy:intl-base",["IntlUtils"],function(a,b,c,d){var e=b('IntlUtils');a.intl_set_xmode=e.setXmode;a.intl_set_amode=e.setAmode;a.intl_set_locale=e.setLocale;a.intl_save_locale=e.saveLocale;a.intl_set_cookie_locale=e.setLocaleCookie;},3); +__d("legacy:onload-action",["OnloadHooks"],function(a,b,c,d){var e=b('OnloadHooks');a._onloadHook=e._onloadHook;a._onafterloadHook=e._onafterloadHook;a.runHook=e.runHook;a.runHooks=e.runHooks;a.keep_window_set_as_loaded=e.keepWindowSetAsLoaded;},3); +__d("legacy:animation",["Animation"],function(a,b,c,d){a.Animation=b('Animation');},3); +__d("LoginFormController",["Event","ge","Button"],function(a,b,c,d,e,f){var g=b('Event'),h=b('ge'),i=b('Button');f.init=function(j,k){g.listen(j,'submit',function(){i.setEnabled(k,false);i.setEnabled.curry(k,true).defer(15000);});var l=h('lgnjs');if(l)l.value=parseInt(Date.now()/1000,10);};}); +__d("ClickRefUtils",[],function(a,b,c,d,e,f){var g={get_intern_ref:function(h){if(!!h){var i={profile_minifeed:1,gb_content_and_toolbar:1,gb_muffin_area:1,ego:1,bookmarks_menu:1,jewelBoxNotif:1,jewelNotif:1,BeeperBox:1,navSearch:1};for(var j=h;j&&j!=document.body;j=j.parentNode){if(!j.id||typeof j.id!=='string')continue;if(j.id.substr(0,8)=='pagelet_')return j.id.substr(8);if(j.id.substr(0,8)=='box_app_')return j.id;if(i[j.id])return j.id;}}return '-';},get_href:function(h){var i=(h.getAttribute&&(h.getAttribute('ajaxify')||h.getAttribute('data-endpoint'))||h.action||h.href||h.name);return typeof i==='string'?i:null;},should_report:function(h,i){if(i=='FORCE')return true;if(i=='INDIRECT')return false;return h&&(g.get_href(h)||(h.getAttribute&&h.getAttribute('data-ft')));}};e.exports=g;}); +__d("setUECookie",["Env"],function(a,b,c,d,e,f){var g=b('Env');function h(i){if(!g.no_cookies){var j=0;if(a.afterloaded){j=2;}else if(a.loaded)j=1;document.cookie="act="+encodeURIComponent(i+":"+j)+"; path=/; domain="+window.location.hostname.replace(/^.*(\.facebook\..*)$/i,'$1');}}e.exports=h;}); +__d("ClickRefLogger",["Arbiter","EagleEye","ClickRefUtils","collectDataAttributes","copyProperties","ge","setUECookie","$"],function(a,b,c,d,e,f){var g=b('Arbiter'),h=b('EagleEye'),i=b('ClickRefUtils'),j=b('collectDataAttributes'),k=b('copyProperties'),l=b('ge'),m=b('setUECookie'),n=b('$');function o(q){if(!l('content'))return [0,0,0,0];var r=n('content'),s=a.Vector2?a.Vector2.getEventPosition(q):{x:0,y:0};return [s.x,s.y,r.offsetLeft,r.clientWidth];}function p(q,r,event,s){var t=(!a.ArbiterMonitor)?'r':'a',u=[0,0,0,0],v,w,x;if(!!event){v=event.type;if(v=='click'&&l('content'))u=o(event);var y=0;event.ctrlKey&&(y+=1);event.shiftKey&&(y+=2);event.altKey&&(y+=4);event.metaKey&&(y+=8);if(y)v+=y;}if(!!r)w=i.get_href(r);var z=[];if(a.ArbiterMonitor){x=a.ArbiterMonitor.getInternRef(r);z=a.ArbiterMonitor.getActFields();}var aa=j(!!event?(event.target||event.srcElement):r,['ft','gt']);k(aa.ft,s.ft||{});k(aa.gt,s.gt||{});if(typeof(aa.ft.ei)==='string')delete aa.ft.ei;var ba=[q._ue_ts,q._ue_count,w||'-',q._context,v||'-',x||i.get_intern_ref(r),t,a.URI?a.URI.getRequestURI(true,true).getUnqualifiedURI().toString():location.pathname+location.search+location.hash,aa].concat(u).concat(z);return ba;}g.subscribe("ClickRefAction/new",function(q,r){if(i.should_report(r.node,r.mode)){var s=p(r.cfa,r.node,r.event,r.extra_data);m(r.cfa.ue);h.log('act',s);if(window.chromePerfExtension)window.postMessage({clickRef:JSON.stringify(s)},window.location.origin);}});}); +__d("PostLoadJS",["Bootloader","Run","emptyFunction"],function(a,b,c,d,e,f){var g=b('Bootloader'),h=b('Run'),i=b('emptyFunction');function j(l,m){h.onAfterLoad(function(){g.loadModules.call(g,[l],m);});}var k={loadAndRequire:function(l){j(l,i);},loadAndCall:function(l,m,n){j(l,function(o){o[m].apply(o,n);});}};e.exports=k;}); +__d("QuicklingAugmenter",["URI"],function(a,b,c,d,e,f){var g=b('URI'),h=[],i={addHandler:function(j){h.push(j);},augmentURI:function(j){var k=[],l=g(j);h.forEach(function(m){var n=m(l);if(!n)return l;k.push(m);l=l.addQueryData(n);});h=k;return l;}};e.exports=i;}); +__d("Quickling",["AjaxPipeRequest","Arbiter","Class","CSSClassTransition","DocumentTitle","DOM","ErrorUtils","HTML","OnloadHooks","PageTransitions","QuicklingAugmenter","Run","URI","UserAgent","copyProperties","goOrReplace","isEmpty","QuicklingConfig"],function(a,b,c,d,e,f){var g=b('AjaxPipeRequest'),h=b('Arbiter'),i=b('Class'),j=b('CSSClassTransition'),k=b('DocumentTitle'),l=b('DOM'),m=b('ErrorUtils'),n=b('HTML'),o=b('OnloadHooks'),p=b('PageTransitions'),q=b('QuicklingAugmenter'),r=b('Run'),s=b('URI'),t=b('UserAgent'),u=b('copyProperties'),v=b('goOrReplace'),w=b('isEmpty'),x=b('QuicklingConfig'),y=x.version,z=x.sessionLength,aa=new RegExp(x.inactivePageRegex),ba=0,ca,da='',ea={isActive:function(){return true;},isPageActive:function(la){if(la=='#')return false;la=new s(la);if(la.getDomain()&&la.getDomain()!=s().getDomain())return false;if(la.getPath()=='/l.php'){var ma=la.getQueryData().u;if(ma){ma=s(unescape(ma)).getDomain();if(ma&&ma!=s().getDomain())return false;}}var na=la.getPath(),oa=la.getQueryData();if(!w(oa))na+='?'+s.implodeQuery(oa);return !aa.test(na);},getLoadCount:function(){return ba;}};function fa(la){la=la||'Facebook';k.set(la);if(t.ie()){da=la;if(!ca)ca=window.setInterval(function(){var ma=da,na=k.get();if(ma!=na)k.set(ma);},5000,false);}}function ga(la){var ma=document.getElementsByTagName('link');for(var na=0;na=z;}function ja(la){g.setCurrentRequest(null);if(ia())return false;la=q.augmentURI(la);if(!ea.isPageActive(la))return false;window.ExitTime=Date.now();r.__removeHook('onafterloadhooks');r.__removeHook('onloadhooks');o.runHooks('onleavehooks');h.inform('onload/exit',true);new ha(la).setCanvasId('content').send();return true;}function ka(la){var ma=window[la];function na(oa,pa,qa){if(typeof oa!=='function')oa=eval.bind(null,oa);var ra=ma(m.guard(oa),pa);if(pa>0)if(qa!==false)r.onLeave(function(){clearInterval(ra);});return ra;}window[la]=na;}r.onAfterLoad(function la(){ka('setInterval');ka('setTimeout');p.registerHandler(ja,1);});e.exports=a.Quickling=ea;}); +__d("StringTransformations",[],function(a,b,c,d,e,f){e.exports={unicodeEscape:function(g){return g.replace(/[^A-Za-z0-9\-\.\:\_\$\/\+\=]/g,function(h){var i=h.charCodeAt().toString(16);return '\\u'+('0000'+i.toUpperCase()).slice(-4);});},unicodeUnescape:function(g){return g.replace(/(\\u[0-9A-Fa-f]{4})/g,function(h){return String.fromCharCode(parseInt(h.slice(2),16));});}};}); +__d("TimeSpentLogger",["Arbiter","Banzai","CSS","ClickRefUtils","DOMEventListener","ScriptPath","UserActivity","collectDataAttributes","copyProperties"],function(a,b,c,d,e,f){var g=b('Arbiter'),h=b('Banzai'),i=b('CSS'),j=b('ClickRefUtils'),k=b('DOMEventListener'),l=b('ScriptPath'),m=b('UserActivity'),n=b('collectDataAttributes'),o=b('copyProperties'),p=[m.getLastInformTime(),0],q=m.getLastInformTime(),r={tos_seq:0,tos_cumulative:0,transport_cause:null,buenopath:null,page_token:null,elements:0,uact_tos:null,client_time:null},s=100,t=100,u=10*1000,v=3*1000,w=1,x=2,y=4,z=8,aa={};m.subscribe(function(ia,ja){var ka=p.length-1;q=ja.last_inform;if(ja.idlenesss)fa('array_limit_reached');p.push(ja.idleness,0);}});function ba(ia){var ja=0;if(document.getElementById('boulder_fixed_header'))ja=ja|w;if(i.hasClass(document.body,'timelineLayout')){ja=ja|y;var ka=document.getElementById('pagelet_main_column_personal');if(ka&&ka.getAttribute('data-referrer')==='pagelet_main_column_personal_timeline')ja=ja|x;if(i.hasClass(document.body,'pagesTimelineLayout'))ja=ja|z;}return ja;}function ca(ia){var ja=ba(),ka=l.getScriptPath(),la=l.getCategoryToken();r.uact_tos=p;if(ka){r.buenopath=ka.substring(0,t);}else r.buenopath='';if(la){r.page_token=la;}else r.page_token='';r.elements=ja;r.transport_cause=ia;r.client_time=Date.now();}function da(){r.tos_seq+=1;p=[q,0];}var ea={store:true,delay:3000,retry:true};function fa(ia){ca(ia);if(h.isEnabled('time_spent')){g.inform('timespent/tosdataposted',o({},r));h.post('time_spent',o({},r),ea);}da();}function ga(){fa('heartbeat');}function ha(){fa('before_unload');}if(window.top==window.self){k.add(window,'beforeunload',ha);setInterval(function(){if(Date.now()-m.getLastInformTime()>(u-100)&&(p.length>2||p[p.length-1]>0))ga();},u);}g.subscribe("UserAction/new",function(ia,ja){if(j.should_report(ja.node,ja.mode)){var ka=n(ja.node,['gt']),la={iref:j.get_intern_ref(ja.node),gt_ref:ka.ref,nav_section:ka.nav_section};ca('useraction');o(la,r);ja.ua.add_data(la);g.inform('timespent/tosdataposted',o({},r));da();}});e.exports=aa;}); +__d("UserActionHistory",["Arbiter","ClickRefUtils","ScriptPath","throttle"],function(a,b,c,d,e,f){var g=b('Arbiter'),h=b('ClickRefUtils'),i=b('ScriptPath'),j=b('throttle'),k={click:1,submit:1},l=false,m={log:[],len:0},n=j.acrossTransitions(function(){try{l._ua_log=JSON.stringify(m);}catch(q){l=false;}},1000);function o(){try{if(a.sessionStorage){l=a.sessionStorage;l._ua_log&&(m=JSON.parse(l._ua_log));}}catch(q){l=false;}m.log[m.len%10]={ts:Date.now(),path:'-',index:m.len,type:'init',iref:'-'};m.len++;g.subscribe("UserAction/new",function(r,s){var t=s.ua,u=s.node,event=s.event;if(!event||!(event.type in k))return;var v={path:i.getScriptPath(),type:event.type,ts:t._ue_ts,iref:h.get_intern_ref(u)||'-',index:m.len};m.log[m.len++%10]=v;l&&n();});}function p(){return m.log.sort(function(q,r){return (r.ts!=q.ts)?(r.ts-q.ts):(r.index-q.index);});}o();e.exports={getHistory:p};}); +__d("PluginShareButton",["DOMEvent","DOMEventListener","PluginResize","PopupWindow","UserAgent"],function(a,b,c,d,e,f){var g=b('DOMEvent'),h=b('DOMEventListener'),i=b('PluginResize'),j=b('PopupWindow'),k=b('UserAgent'),l={listen:function(m,n){var o=m.href;h.add(m,'click',function(p){new g(p).kill();j.open(o,340,670);});},resize:function(m){var n=k.firefox()||k.ie()>=9?1:0;new i(function(){return m.offsetWidth+m.offsetLeft+n;},function(){return m.offsetHeight+m.offsetTop;}).resize().auto();}};e.exports=l;}); +__d("TinyViewport",["Event","CSS","DOM","debounce"],function(a,b,c,d,e,f){var g=b('Event'),h=b('CSS'),i=b('DOM'),j=b('debounce'),k=j(function(){var l=document.documentElement,m=i.getDocumentScrollElement(),n=l.clientHeight<400||l.clientWidthh)i.className=i.className+' sidebarMode';}};e.exports=g;}); +__d("eprintf",[],function(a,b,c,d,e,f){var g=function(h){var i=Array.prototype.slice.call(arguments).map(function(l){return String(l);}),j=h.split('%s').length-1;if(j!==i.length-1)return g('eprintf args number mismatch: %s',JSON.stringify(i));var k=1;return h.replace(/%s/g,function(l){return String(i[k++]);});};e.exports=g;}); +__d("ex",[],function(a,b,c,d,e,f){var g=function(h){var i=Array.prototype.slice.call(arguments).map(function(k){return String(k);}),j=h.split('%s').length-1;if(j!==i.length-1)return g('ex args number mismatch: %s',JSON.stringify(i));return g._prefix+JSON.stringify(i)+g._suffix;};g._prefix='';e.exports=g;}); +__d("erx",["ex"],function(a,b,c,d,e,f){var g=b('ex'),h=function(i){if(typeof i!=='string')return i;var j=i.indexOf(g._prefix),k=i.lastIndexOf(g._suffix);if(j<0||k<0)return [i];var l=j+g._prefix.length,m=k+g._suffix.length;if(l>=k)return ['erx slice failure: %s',i];var n=i.substring(0,j),o=i.substring(m);i=i.substring(l,k);var p;try{p=JSON.parse(i);p[0]=n+p[0]+o;}catch(q){return ['erx parse failure: %s',i];}return p;};e.exports=h;}); +__d("copyProperties",[],function(a,b,c,d,e,f){function g(h,i,j,k,l,m,n){h=h||{};var o=[i,j,k,l,m],p=0,q;while(o[p]){q=o[p++];for(var r in q)h[r]=q[r];if(q.hasOwnProperty&&q.hasOwnProperty('toString')&&(typeof q.toString!='undefined')&&(h.toString!==q.toString))h.toString=q.toString;}return h;}e.exports=g;}); +__d("Env",["copyProperties"],function(a,b,c,d,e,f){var g=b('copyProperties'),h={start:Date.now()};if(a.Env){g(h,a.Env);a.Env=undefined;}e.exports=h;}); +__d("ErrorUtils",["eprintf","erx","Env"],function(a,b,c,d,e,f){var g=b('eprintf'),h=b('erx'),i=b('Env'),j=[],k=[],l=50,m=window.chrome&&'type' in new Error(),n=/^(\s+at\s)?((\w+)?.*)(\(|@)?.*(https?:[^:]*)(:(\d+))?(:(\d+))?/mg;function o(aa){if(!aa)return;aa=aa.split(/\n\n/)[0];n.lastIndex=0;var ba=[],ca;while(ca=n.exec(aa))ba.push(' at '+(ca[3]||'')+(ca[3]?'(':'')+ca[5]+':'+ca[7]+(ca[9]?':'+ca[9]:'')+(ca[3]?')':''));return ba.length?ba.join('\n'):aa;}function p(aa){if(!aa){return {};}else if(aa._originalError)return aa;var ba=h(aa.message),ca=g.apply(a,ba),da={line:aa.lineNumber||aa.line,column:aa.columnNumber||aa.column,message:ca,messageWithParams:ba,name:aa.name,script:aa.fileName||aa.sourceURL||aa.script,stack:o(aa.stackTrace||aa.stack)};da._originalError=aa;if(aa.framesToPop){var ea=da.stack.split('\n');ea.splice(0,aa.framesToPop);da.stack=ea.join('\n');if(/(\w{3,5}:\/\/[^:]+):(\d+)/.test(ea[0])){da.script=RegExp.$1;da.line=parseInt(RegExp.$2,10);}}if(m&&/(\w{3,5}:\/\/[^:]+):(\d+)/.test(aa.stack)){da.script=RegExp.$1;da.line=parseInt(RegExp.$2,10);}for(var fa in da)(da[fa]==null&&delete da[fa]);return da;}function q(){try{throw new Error();}catch(aa){var ba=p(aa).stack;return ba&&ba.replace(/[\s\S]*__getTrace__.*\n/,'');}}function r(aa,ba){aa=p(aa);!ba;if(k.length>l)k.splice(l/2,1);k.push(aa);for(var ca=0;ca-1;},addClass:function(j,k){j=g(j);if(k)if(j.classList){j.classList.add(k);}else if(!i.hasClass(j,k))j.className=j.className+' '+k;return j;},removeClass:function(j,k){j=g(j);if(k)if(j.classList){j.classList.remove(k);}else if(i.hasClass(j,k))j.className=j.className.replace(new RegExp('(^|\\s)'+k+'(?:\\s|$)','g'),'$1').replace(/\s+/g,' ').replace(/^\s*|\s*$/g,'');return j;},conditionClass:function(j,k,l){return (l?i.addClass:i.removeClass)(j,k);},toggleClass:function(j,k){return i.conditionClass(j,k,!i.hasClass(j,k));},shown:function(j){return !i.hasClass(j,h);},hide:function(j){return i.addClass(j,h);},show:function(j){return i.removeClass(j,h);},toggle:function(j){return i.toggleClass(j,h);},conditionShow:function(j,k){return i.conditionClass(j,h,!k);}};e.exports=i;}); +__d("legacy:css-core",["CSS"],function(a,b,c,d){a.CSS=b('CSS');},3); +__d("legacy:dom-core",["$","ge"],function(a,b,c,d){a.$=b('$');a.ge=b('ge');},3); +__d("Parent",["CSS"],function(a,b,c,d,e,f){var g=b('CSS'),h={byTag:function(i,j){j=j.toUpperCase();while(i&&i.nodeName!=j)i=i.parentNode;return i;},byClass:function(i,j){while(i&&!g.hasClass(i,j))i=i.parentNode;return i;},byAttribute:function(i,j){while(i&&(!i.getAttribute||!i.getAttribute(j)))i=i.parentNode;return i;}};e.exports=h;}); +__d("legacy:parent",["Parent"],function(a,b,c,d){a.Parent=b('Parent');},3); +__d("emptyFunction",["copyProperties"],function(a,b,c,d,e,f){var g=b('copyProperties');function h(j){return function(){return j;};}function i(){}g(i,{thatReturns:h,thatReturnsFalse:h(false),thatReturnsTrue:h(true),thatReturnsNull:h(null),thatReturnsThis:function(){return this;},thatReturnsArgument:function(j){return j;},mustImplement:function(j,k){return function(){};}});e.exports=i;}); +__d("legacy:emptyFunction",["emptyFunction"],function(a,b,c,d){a.emptyFunction=b('emptyFunction');},3); +__d("isEmpty",[],function(a,b,c,d,e,f){function g(h){if(Array.isArray(h)){return h.length===0;}else if(typeof h==='object'){for(var i in h)return false;return true;}else return !h;}e.exports=g;}); +__d("CSSLoader",["isEmpty"],function(a,b,c,d,e,f){var g=b('isEmpty'),h=20,i=5000,j,k,l={},m=[],n,o={};function p(t){if(k)return;k=true;var u=document.createElement('link');u.onload=function(){j=true;u.parentNode.removeChild(u);};u.rel='stylesheet';u.href='data:text/css;base64,';t.appendChild(u);}function q(){var t,u=[],v=[];if(Date.now()>=n){for(t in o){v.push(o[t].signal);u.push(o[t].error);}o={};}else for(t in o){var w=o[t].signal,x=window.getComputedStyle?getComputedStyle(w,null):w.currentStyle;if(x&&parseInt(x.height,10)>1){u.push(o[t].load);v.push(w);delete o[t];}}for(var y=0;y<\/script\>');}var ga=ca.onload;ca.onload=function(){l('t_layout');ga&&ga();g.inform(h.ONLOAD,true,k);};ca.onbeforeunload=function(){var ha={};g.inform(h.ONBEFOREUNLOAD,ha,k);if(!ha.warn)g.inform('onload/exit',true);return ha.warn;};}var y=g.registerCallback(function(){l('t_onload');g.inform(h.ONLOAD_CALLBACK,true,k);},[h.ONLOAD]),z=g.registerCallback(function(){l('t_domcontent');var ba={timeTriggered:Date.now()};g.inform(h.ONLOAD_DOMCONTENT_CALLBACK,ba,k);},[h.ONLOAD_DOMCONTENT]);x();var aa={onLoad:n,onAfterLoad:o,onLeave:t,onBeforeUnload:p,onUnload:r,onAfterUnload:s,__domContentCallback:z,__onloadCallback:y,__removeHook:v};e.exports=aa;}); +__d("legacy:onload",["Run","OnloadEvent"],function(a,b,c,d){var e=b('Run');a.OnloadEvent=b('OnloadEvent');a.onloadRegister_DEPRECATED=e.onLoad;a.onloadRegister=function(){return e.onLoad.apply(this,arguments);};a.onafterloadRegister_DEPRECATED=e.onAfterLoad;a.onafterloadRegister=function(){return e.onAfterLoad.apply(this,arguments);};a.onleaveRegister=e.onLeave;a.onbeforeunloadRegister=e.onBeforeUnload;a.onunloadRegister=e.onUnload;},3); +__d("wait_for_load",["Bootloader","Run"],function(a,b,c,d,e,f){var g=b('Bootloader'),h=b('Run');function i(l,m){return window.loaded&&m.call(l);}function j(l,m,n){g.loadComponents.call(g,m,n.bind(l));return false;}function k(l,m,n){n=n.bind(l,m);if(window.loaded)return n();switch((m||event).type){case 'load':case 'focus':h.onAfterLoad(n);return;case 'click':var o=l.style,p=document.body.style;o.cursor=p.cursor='progress';h.onAfterLoad(function(){o.cursor=p.cursor='';if(l.tagName.toLowerCase()=='a'){if(false!==n()&&l.href)window.location.href=l.href;}else if(l.click)l.click();});break;}return false;}a.run_if_loaded=i;a.run_with=j;a.wait_for_load=k;},3); +__d("Intl",[],function(a,b,c,d,e,f){var g;function h(j){if(typeof j!='string')return false;return j.match(new RegExp(h.punct_char_class+'['+')"'+"'"+'\u00BB'+'\u0F3B'+'\u0F3D'+'\u2019'+'\u201D'+'\u203A'+'\u3009'+'\u300B'+'\u300D'+'\u300F'+'\u3011'+'\u3015'+'\u3017'+'\u3019'+'\u301B'+'\u301E'+'\u301F'+'\uFD3F'+'\uFF07'+'\uFF09'+'\uFF3D'+'\\s'+']*$'));}h.punct_char_class='['+'.!?'+'\u3002'+'\uFF01'+'\uFF1F'+'\u0964'+'\u2026'+'\u0EAF'+'\u1801'+'\u0E2F'+'\uFF0E'+']';function i(j){if(g){var k=[],l=[];for(var m in g.patterns){var n=g.patterns[m];for(var o in g.meta){var p=new RegExp(o.slice(1,-1),'g'),q=g.meta[o];m=m.replace(p,q);n=n.replace(p,q);}k.push(m);l.push(n);}for(var r=0;r=0);var k='';while(j){if(j&1)k+=i;if((j>>=1))i+=i;}return k;}e.exports=h;}); +__d("BitMap",["copyProperties","repeatString"],function(a,b,c,d,e,f){var g=b('copyProperties'),h=b('repeatString'),i='0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_';function j(){this._bits=[];}g(j.prototype,{set:function(m){this._bits[m]=1;return this;},toString:function(){var m=[];for(var n=0;n=0)l.set(t);define(q,r,function(){this._replaceTransportMarkers(s);return s;}.bind(this));},_handleRequire:function(q,r,s,t){var u=[q].concat(s||[]),v=(r?'__call__':'__requireModule__')+k++;this._moduleIDsToCleanup[v]=[q,r];return define(v,u,function(w){delete this._moduleIDsToCleanup[v];t&&this._replaceTransportMarkers(t);if(r){if(!w[r])throw new TypeError('Module '+q+' has no method '+r);w[r].apply(w,t||[]);}},1,this,1);},_handleInstance:function(q,r,s,t){var u=null;if(r)u=function(v){this._replaceTransportMarkers(s);var w=Object.create(v.prototype);v.apply(w,s);return w;}.bind(this);define(q,r,u,0,null,t);},_handleMarkup:function(q,r,s){define(q,['HTML'],function(t){return t.replaceJSONWrapper(r).getRootNode();},0,null,s);},_handleElement:function(q,r,s,t){var u=[],v=0;if(t){u.push(t);v=1;s++;}define(q,u,function(w){var x=j(r,w);if(!x){var y='Could not find element '+r;throw new Error(y);}return x;},v,null,s);},_replaceTransportMarkers:function(q,r){var s=(typeof r!=='undefined')?q[r]:q,t;if(Array.isArray(s)){for(t=0;t=1)da.requires.push('uipage_onload');var ea=function(){this._informPageletEvent('preonload',da.id);if(this._isRelevantPagelet(da))t(da.onload);this._informPageletEvent('onload',da.id);this.arbiter.inform('pagelet_onload',true,g.BEHAVIOR_EVENT);da.provides&&this.arbiter.inform(da.provides,true,w);}.bind(this),fa=function(){this._isRelevantPagelet(da)&&t(da.onafterload);}.bind(this);this.arbiter.registerCallback(ea,da.requires);this.arbiter.registerCallback(fa,[this.onloadEvt]);}.bind(this),false,da.id);},_downloadDisplayDependenciesAndDisplayPagelet:function(da){this._informPageletEvent('css',da.id);var ea=(da.css||[]).concat(da.displayJS||[]);h.loadResources(ea,function(){var fa=da.display_dependency||[],ga=[];for(var ha=0;ha=0&&((p-j[s]._ue_ts)10)j.shift();g.inform("ClickRefAction/new",{cfa:t,node:m,mode:n,event:event,extra_data:o},g.BEHAVIOR_PERSISTENT);i++;return t;}e.exports=a.clickRefAction=k;}); +__d("trackReferrer",["Parent"],function(a,b,c,d,e,f){var g=b('Parent');function h(i,j){i=g.byAttribute(i,'data-referrer');if(i){var k=/^(?:(?:[^:\/?#]+):)?(?:\/\/(?:[^\/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?/.exec(j)[1]||'';if(!k)return;var l=k+'|'+i.getAttribute('data-referrer'),m=new Date();m.setTime(Date.now()+1000);document.cookie="x-src="+encodeURIComponent(l)+"; "+"expires="+m.toGMTString()+";path=/; domain="+window.location.hostname.replace(/^.*(\.facebook\..*)$/i,'$1');}return i;}e.exports=h;}); +__d("Miny",[],function(a,b,c,d,e,f){var g='Miny1',h={encode:[],decode:{}},i='wxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_'.split('');function j(n){for(var o=h.encode.length;o=4){var aa=n.status;s.cleanup();if(aa==200){if(u)u();s.inform(r.OK);}else{if(v)v(aa);s.inform(r.ERROR);}}};setTimeout(s.cleanup,r.SEND_TIMEOUT,false);var x=m.getAsyncParams(w);x.q=JSON.stringify(t);x.ts=Date.now();x.ph=h.push_phase;if(r.FBTRACE)x.fbtrace=r.FBTRACE;if(r.isEnabled('miny_compression')){var y=Date.now(),z=i.encode(x.q);if(z.length0)q.push(p);p={user:h.getUserID(),page_id:i,trigger:null,time:Date.now(),posts:[]};if(g.isEnabled(m))p.sequence=[];}function t(y){var z=Date.now()+y;if(!o||z=400&&z<600,ca=y.map(function(da){da.posts=da.posts.filter(function(ea){var fa=ba||ea.__meta.options.retry;ea.__meta.retryCount=(ea.__meta.retryCount||0)+1;ea[3]=ea.__meta.retryCount;return fa&&ea.__meta.timestamp>aa;});return da;});ca=ca.filter(function(da){return da.posts.length>0;});q=ca.concat(q);});}var v,w;try{w=a.sessionStorage;}catch(x){}if(w){v={store:function y(){try{s();var aa=h.getUserID(),ba=q.filter(function(da){return da.user==aa;}).map(function(da){da=j({},da);da.posts=da.posts.map(function(ea){return [ea[0],ea[1],ea[2],ea.__meta];});return da;}),ca=JSON.stringify(ba);w.setItem(l,ca);}catch(z){}},restore:function y(){try{var aa=w.getItem(l);if(aa){w.removeItem(l);var ba=h.getUserID(),ca=JSON.parse(aa);ca=ca.filter(function(da){da.posts.forEach(function(ea){ea.__meta=ea.pop();if('retryCount' in ea.__meta)ea[3]=ea.__meta.retryCount;});return da.user==ba;});q=q.concat(ca);}}catch(z){}}};}else v={store:k,restore:k};g.SEND='Banzai:SEND';g.OK='Banzai:OK';g.ERROR='Banzai:ERROR';g.SHUTDOWN='Banzai:SHUTDOWN';g.SEND_TIMEOUT=15000;g.VITAL_WAIT=1000;g.BASIC_WAIT=60000;g.EXPIRY=30*60000;g.VITAL={delay:h.config.MIN_WAIT||g.VITAL_WAIT};g.BASIC={delay:h.config.MAX_WAIT||g.BASIC_WAIT};g.FBTRACE=h.config.fbtrace,g.isEnabled=function(y){return h.config.gks&&h.config.gks[y];};g.post=function(y,z,aa){if(h.config.disabled)return;var ba=h.config.blacklist;if(ba){if(ba&&ba.join&&!ba._regex)ba._regex=new RegExp('^(?:'+ba.join('|')+')');if(ba._regex&&ba._regex.test(y))return;}if(p.user!=h.getUserID())s();var ca=Date.now(),da=[y,z,ca-p.time];aa=aa||{};da.__meta={options:aa,timestamp:ca};p.posts.push(da);var ea=aa.delay;if(ea==null)ea=g.BASIC_WAIT;if(g.isEnabled(m)){if(!(y in r)){r[y]=0;}else r[y]++;p.sequence.push([y,r[y]]);}if(t(ea)||!p.trigger)p.trigger=y;};g.subscribe=h.subscribe;g._testState=function(){return {wad:p,wads:q};};h.onUnload(function(){h.cleanup();h.inform(g.SHUTDOWN);v.store();});s();v.restore();t(g.BASIC.delay);e.exports=g;}); +__d("userAction",["Arbiter","Banzai","copyProperties"],function(a,b,c,d,e,f){var g=b('Arbiter'),h=b('Banzai'),i=b('copyProperties'),j=50,k=[],l={},m={};function n(u,v,w,x,event){var y=u+'/'+v,z=t(x);i(this,{ue:y,_uai_logged:false,_uai_timeout:null,_primary:{},_fallback:{},_default_ua_id:z||'-',_default_action_type:event?event.type:'-',_ts:u,_ns:w,_start_ts:u,_prev_event:'s',_ue_ts:u,_ue_count:v,_data_version:1,_event_version:2,_info_version:2});this._log('ua:n',[1,y]);}var o={store:true,delay:3000,retry:true};i(n.prototype,{_log:function(u,v){var w=l[u]===true,x=m[u],y=x?x[this._ns]:{},z=y?y[this._ua_id]:undefined;if(h.isEnabled('useraction')&&(z!==undefined?z:w))h.post(u,v,o);},_get_action_type:function(){return (this._primary._action_type||this._fallback._action_type||this._default_action_type);},_get_ua_id:function(){return (this._primary._ua_id||this._fallback._ua_id||this._default_ua_id);},_log_uai:function(){var u=[this._info_version,this.ue,this._ns,this._get_ua_id(),this._get_action_type()];this._log('ua:i',u);this._uai_logged=true;this._uai_timeout=null;},uai:function(u,v,w){if(!this._uai_logged){this._uai_timeout&&clearTimeout(this._uai_timeout);this._primary._ua_id=v;this._primary._action_type=u;if(w===undefined){this._log_uai();}else if(w===false){this._uai_logged=true;}else{var x=this;w=w||0;this._uai_timeout=setTimeout(function(){x._log_uai.apply(x);},w);}}return this;},uai_fallback:function(u,v,w){if(!this._uai_logged){var x=this;this._uai_timeout&&clearTimeout(this._uai_timeout);this._fallback._ua_id=v;this._fallback._action_type=u;w=(w===undefined)?j:w;this._uai_timeout=setTimeout(function(){x._log_uai.apply(x);},w);}return this;},add_event:function(u,v,w){v=v||0;var x=(Date.now()-v),y=x-this._ts,z=x-(w?w:this._ue_ts),aa=[this._event_version,this.ue,this._ns,this._get_ua_id(),this._prev_event,u,y,z];if(this._get_ua_id()){this._log('ua:e',aa);this._ts=x;this._prev_event=u;}return this;},add_data:function(u){var v=[this._data_version,this.ue,u];this._log('ua:d',v);return this;}});var p=0,q=0,r=null;function s(u,v,event,w){w=w||{};var x=Date.now();if(!v&&event)v=event.getTarget();if(v&&r)if(x-q10)k.shift();g.inform("UserAction/new",{ua:y,node:v,mode:w.mode,event:event});q=x;p++;return y;}function t(u){if(!u||!u.nodeName)return null;return u.nodeName.toLowerCase();}s.setUATypeConfig=function(u){i(l,u);};s.setCustomSampleConfig=function(u){i(m,u);};s.getCurrentUECount=function(){return p;};e.exports=a.userAction=s;}); +__d("Primer",["function-extensions","Bootloader","CSS","ErrorUtils","Parent","clickRefAction","trackReferrer","userAction"],function(a,b,c,d,e,f){b('function-extensions');var g=b('Bootloader'),h=b('CSS'),i=b('ErrorUtils'),j=b('Parent'),k=b('clickRefAction'),l=b('trackReferrer'),m=b('userAction'),n=null,o=/async(?:-post)?|dialog(?:-post)?|theater|toggle/,p=document.documentElement;function q(t,u){t=j.byAttribute(t,u);if(!t)return;do{var v=t.getAttribute(u);JSON.parse(v).forEach(function(w){var x=t;g.loadModules.call(g,[w[0]],function(y){y[w[1]](x);});});}while(t=j.byAttribute(t.parentNode,u));return false;}p.onclick=i.guard(function(t){t=t||window.event;n=t.target||t.srcElement;var u=q(n,'data-onclick'),v=j.byTag(n,'A');if(!v)return u;var w=v.getAttribute('ajaxify'),x=v.href,y=w||x;if(y){k('a',v,t).coalesce_namespace('primer');var z=m('primer',v,t,{mode:'DEDUP'}).uai_fallback('click');if(a.ArbiterMonitor)a.ArbiterMonitor.initUA(z,[v]);}if(w&&x&&!(/#$/).test(x)){var aa=t.which&&t.which===2,ba=t.altKey||t.ctrlKey||t.metaKey||t.shiftKey;if(aa||ba)return;}l(v,y);var ca=v.rel&&v.rel.match(o);ca=ca&&ca[0];switch(ca){case 'dialog':case 'dialog-post':g.loadModules(['AsyncDialog'],function(da){da.bootstrap(y,v,ca);});break;case 'async':case 'async-post':g.loadModules(['AsyncRequest'],function(da){da.bootstrap(y,v);});break;case 'theater':g.loadModules(['PhotoSnowlift'],function(da){da.bootstrap(y,v);});break;case 'toggle':h.toggleClass(v.parentNode,'openToggler');g.loadModules(['Toggler'],function(da){da.bootstrap(v);});break;default:return u;}return false;});p.onsubmit=i.guard(function(t){t=t||window.event;var u=t.target||t.srcElement;if(u&&u.nodeName=='FORM'&&u.getAttribute('rel')=='async'){k('f',u,t).coalesce_namespace('primer');var v=m('primer',u,t,{mode:'DEDUP'}).uai_fallback('submit');if(a.ArbiterMonitor)a.ArbiterMonitor.initUA(v,[u]);var w=n;g.loadModules(['Form'],function(x){x.bootstrap(u,w);});return false;}});var r=null,s=i.guard(function(t,u){u=u||window.event;r=u.target||u.srcElement;q(r,'data-on'+t);var v=j.byAttribute(r,'data-hover');if(!v)return;switch(v.getAttribute('data-hover')){case 'tooltip':g.loadModules(['Tooltip'],function(w){w.process(v,r);});break;}});p.onmouseover=s.curry('mouseover');if(p.addEventListener){p.addEventListener('focus',s.curry('focus'),true);}else p.attachEvent('onfocusin',s.curry('focus'));}); +__d("ScriptPath",["Banzai","ErrorUtils"],function(a,b,c,d,e,f){var g=b("Banzai"),h=b("ErrorUtils"),i='script_path_change',j={scriptPath:null,categoryToken:null},k={PAGE_LOAD:'load',PAGE_UNLOAD:'unload',TRANSITION:'transition'},l=null,m={},n=0,o=false;function p(x){var y=++n;m[y]=x;return y;}function q(x){if(m[x])delete m[x];}function r(){Object.keys(m).forEach(function(x){h.applyWithGuard(m[x],null,[l]);});}function s(x,y,z){if(!o)return;var aa={source_path:x.scriptPath,source_token:x.categoryToken,dest_path:y.scriptPath,dest_token:y.categoryToken,cause:z};g.post(i,aa);}function t(){s(j,l,k.PAGE_LOAD);}function u(x,y){s(x,y,k.TRANSITION);}function v(){s(l,j,k.PAGE_UNLOAD);}g.subscribe(g.SHUTDOWN,v);var w={set:function(x,y){var z=l;l={scriptPath:x,categoryToken:y};window._script_path=x;if(o)if(z){u(z,l);}else t();r();},startLogging:function(){o=true;if(l)t();},stopLogging:function(){o=false;},getScriptPath:function(){return l?l.scriptPath:undefined;},getCategoryToken:function(){return l?l.categoryToken:undefined;},subscribe:function(x){return p(x);},unsubscribe:function(x){q(x);}};w.CAUSE=k;w.BANZAI_LOGGING_ROUTE=i;e.exports=w;}); +__d("QuicklingPrelude",["ScriptPath"],function(a,b,c,d,e,f){var g=b('ScriptPath'),h=/^(?:(?:[^:\/?#]+):)?(?:\/\/(?:[^\/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?/,i='';window.location.href.replace(h,function(j,k,l,m){var n,o,p,q;n=o=k+(l?'?'+l:'');if(m){m=m.replace(/^(!|%21)/,'');p=m.charAt(0);if(p=='/'||p=='\\')n=m.replace(/^[\\\/]+/,'/');}if(n!=o){q=g.getScriptPath();if(q)document.cookie="rdir="+q+"; path=/; domain="+window.location.hostname.replace(/^.*(\.facebook\..*)$/i,'$1');window.location.replace(i+n);}});}); +__d("removeArrayReduce",[],function(a,b,c,d,e,f){Array.prototype.reduce=undefined;Array.prototype.reduceRight=undefined;}); +__d("SubmitOnEnterListener",["Bootloader","CSS"],function(a,b,c,d,e,f){var g=b('Bootloader'),h=b('CSS');document.documentElement.onkeydown=function(i){i=i||window.event;var j=i.target||i.srcElement,k=i.keyCode==13&&!i.altKey&&!i.ctrlKey&&!i.metaKey&&!i.shiftKey&&h.hasClass(j,'enter_submit');if(k){g.loadModules(['DOM','Input','trackReferrer','Form'],function(l,m,n,o){if(!m.isEmpty(j)){var p=j.form,q=l.scry(p,'.enter_submit_target')[0]||l.scry(p,'[type="submit"]')[0];if(q){var r=o.getAttribute(p,'ajaxify')||o.getAttribute(p,'action');if(r)n(p,r);q.click();}}});return false;}};}); +__d("CommentPrelude",["CSS","Parent","clickRefAction","userAction"],function(a,b,c,d,e,f){var g=b('CSS'),h=b('Parent'),i=b('clickRefAction'),j=b('userAction');function k(o,p){j('ufi',o).uai('click');i('ufi',o,null,'FORCE');return l(o,p);}function l(o,p){var q=h.byTag(o,'form');m(q);var r=g.removeClass.curry(q,'hidden_add_comment');if(window.ScrollAwareDOM){window.ScrollAwareDOM.monitor(q,r);}else r();if(p!==false)(q.add_comment_text_text||q.add_comment_text).focus();return false;}function m(o){var p=g.removeClass.curry(o,'collapsed_comments');if(window.ScrollAwareDOM){window.ScrollAwareDOM.monitor(o,p);}else p();}var n={click:k,expand:l,uncollapse:m};e.exports=n;}); +__d("legacy:ufi-comment-prelude-js",["CommentPrelude"],function(a,b,c,d){var e=b('CommentPrelude');a.fc_click=e.click;a.fc_expand=e.expand;},3); +__d("ScriptMonitor",[],function(a,b,c,d,e,f){var g,h=[],i=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;e.exports={activate:function(){if(!i)return;g=new i(function(j){for(var k=0;k<\/script>');(function(a){if(a){a.onreadystatechange=function(){if(this.readyState=="complete"){WRondomload()}}}})(WRD.getElementById("ClickTaleDefer"))}}}else{WRondomload()}function WRCK(){var a=document.getElementsByTagName("script");if(a.length){var b=a[a.length-1];if(b.src){return b.src}}return false}function ClickTale(e,f,a){function d(){if(typeof ClickTaleScriptSource!="undefined"){if(typeof ClickTaleScriptSource=="string"){return ClickTaleScriptSource}else{return WRE}}if(WRCJ){if(WRCJ.substr(0,23)=="http://s.clicktale.net/"){return"http://s.clicktale.net/"}if(WRCJ.substr(0,33)=="https://clicktale.pantherssl.com/"){return"https://clicktale.pantherssl.com/"}}var g=a.substr(0,3)=="www"?a:"www";if(typeof ClickTaleSSL!="undefined"&&((ClickTaleSSL==1&&location.protocol=="https:")||ClickTaleSSL==2)){return"https://clicktalecdn.sslcs.cdngc.net/"+g+"/"}else{return"http://cdn.clicktale.net/"+g+"/"}}if(WRAX){if(WRAt){WRAw("error3: Monitoring has already started")}throw"CT: Monitoring has already started"}if(ClickTaleIsPlayback()){return}if(f==undefined){f=1}WRA=e;if(!a){a="www"}WRCU=a;if(WRAt){WRAw("note2: preparing to record (ver "+14+"."+2+") for project id "+e+" and partition "+a);if(f==1){WRAw("note3: recording all visitors to this page ("+f+")")}else{WRAw("note3: recording approximately 1 of every "+Math.ceil(1/f)+" visitors to this page ("+f+")")}}if(!WRk){if(WRAt){WRAw("warning2: the current browser is not supported")}return}if(location.protocol=="file:"){if(WRAt){WRAw("warning3: the current protocol is not supported")}return}var c="_"+WRA+"_"+WRCU;if(WRCV){WRCP(WRCV,"apv"+c,ClickTaleCookieExpiryDays)}if(!ClickTaleIgnoreCookieName||!ClickTaleUIDCookieName||!WRCV){if(WRAt){WRAw("warning9: can't record when cookies are not specified")}return}if(WRi(ClickTaleIgnoreCookieName)){if(WRAt){WRAw("warning6: the current machine/user is temporarily disabled for recording")}return}WRK=WRi(ClickTaleUIDCookieName);WRBy=false;if(WRK==null){WRBy=true;if(Math.random()0?a:null}function ClickTaleSetUID(a){if(a>0||a===0||a==="0"){WRh(ClickTaleUIDCookieName,a,ClickTaleCookieExpiryDays)}else{WRCQ(ClickTaleUIDCookieName)}}function ClickTaleGetPID(){return typeof WRA=="number"?WRA:null}function ClickTaleTag(a){WRC({a:"tag",c:a,t:WRH()})}var ClickTaleEvent=ClickTaleTag;function ClickTaleNote(a){WRC({a:"note",c:a,t:WRH()})}function ClickTaleField(b,a){WRC({a:"field",f:b,v:a,t:WRH()})}function ClickTaleExec(a){if(a.length>2000&&WRBW.XDR){WRC({a:"exec",streamval:a,t:WRH()})}else{WRC({a:"exec",c:a,t:WRH()})}}function ClickTaleRegisterFormSubmitSuccess(b){if(WRB1()){WRB4(b)}else{if(b==null){WRC({a:"submitsuccess",i:false,t:WRH()})}}}function ClickTaleRegisterFormSubmitFailure(b){if(WRB1()){WRB5(b)}else{if(b==null){WRC({a:"submitfail",i:false,t:WRH()})}}}function ClickTaleIgnore(a){WRh(ClickTaleUIDCookieName,0,a)}function ClickTaleUploadPage(a,b){if(WRAX){throw"CTUP: Monitoring has already started"}WRAL=true;WRAN=a;WRAO=b;if(WRAM&&WRB1()){WRAZ()}}function ClickTaleSetAllSensitive(){WRBT=true}function ClickTaleGetVersion(){return[14,2]}function ClickTaleSetCustomElementID(a,b){a.ClickTale=a.ClickTale||{};a.ClickTale.CustomID=b}function WRondomload(){if(ClickTaleIsPlayback()||WRAM){return}var b=WRD.getElementById("ClickTaleDefer");if(b){b.parentNode.removeChild(b)}var a=new RegExp('(
    ]+>)\\s*]+><\/script>\\s*(
    )',"i");WRAM=WRD.documentElement.innerHTML.replace(a,"$1$2");WRC({a:"domload",t:WRH()});if(WRB1()){WRAP()}if(WRAL&&WRB1()){WRAZ()}}function WRAv(){if(ClickTaleIsPlayback()){return}WRAy(location.hash.substr(1));WRAy(location.search.substr(1))}function WRAy(d){var c=d.split("&");for(var b=0;b')}WRAu=WRD.getElementById("ClickTaleDebugDump");if(WRAu){WRAu.value=""}WRAt=1;break;case"enable":WRCQ(ClickTaleIgnoreCookieName);var a=WRi(ClickTaleUIDCookieName);if(a==null||a==0){WRh(ClickTaleUIDCookieName,WRAY(),ClickTaleCookieExpiryDays)}break;case"disable":WRh(ClickTaleUIDCookieName,0,ClickTaleCookieExpiryDays);break;case"reset":WRCQ(ClickTaleUIDCookieName);break;case"uaskipcheck":WRBW=WRBY(true);WRAw("warning8: skipping userAgent support check, running as: "+WRBW.a);break;default:ts=c[b].match(/^(\w+)(\(|%28)(.+)(\)|%29)$/i);if(ts&&ts.length==5){var a=decodeURIComponent(ts[3]),e=ts[1];switch(e.toLowerCase()){case"t":ClickTaleTag(a);break;case"u":ClickTaleSetUID(a);break;case"ua":WRk=decodeURIComponent(a);WRAw("warning7: forcing userAgent type: "+WRk);break;case"uao":WRBW=JSON.parse(a);WRAw("warning7: forcing userAgentObj type: "+a);break;case"report":if(/test|subs\d?\d?/.test(a)){WRAt=2;WRCW="http://"+(a=="test"?"ct.test":(a+".app.clicktale.com"))}break;default:WRAw("warning5: unknown parameter in URL: "+e);break}}break}}}function WRAw(a){if(WRAt==1){if(WRAu){WRAu.value+=(a+"\n")}else{if(console&&console.log){console.log("CT: "+a)}else{alert("CT: "+a)}}}if(WRAt==2){try{if(parent&&parent!=window){if(parent.postMessage){parent.postMessage(a,WRCW)}else{alert("CT: Browser doesn't support diagnostics.")}}else{console.log("CT: "+a)}}catch(b){alert("CT: exception trying to communicate diagnostics data.")}}}function WRBY(a){var b=WRBg(navigator.userAgent);if(!a){if(window.ClickTaleSettings&&ClickTaleSettings.CheckAgentSupport){b=ClickTaleSettings.CheckAgentSupport(WRBh,b)}else{b=WRBh(b)}}return b}function WRBh(a){if(!a){return false}if((a.t==a.IE&&a.v>=7&&a.v<=10&&!a.m)||(a.t==a.FF&&a.v>=1.5&&a.v<=22&&!a.m)||(a.t==a.Ch&&a.v>=9&&a.v<=28)||(a.t==a.Sa&&a.v>=5.1&&a.v<6.1)||(a.t==a.WK&&a.v>=534&&a.v<=539)){return a}return false}function WRBr(b){var d={};var e=" "+b+" ";var c=/ (\w+)(?:\/([\w\.]+))? (?:(\([^\)]+\)) )?/img;var a;while((a=c.exec(e))!=null){d[a[1]]={value:a[2],extra:a[3]};c.lastIndex--}return d}function WRBg(b){var c={IE:0,FF:1,Ch:2,Sa:3,Op:4,WK:5};var f=WRBr(b);if(f.Opera){c.t=c.Op;c.v=0;c.a="Op";c.m=false;return c}if(f.Mozilla&&f.Mozilla.extra){var d=f.Mozilla.extra;var a=d.indexOf("MSIE ");if(a!=-1){c.t=c.IE;c.v=parseFloat(d.substr(a+5,3));c.a="IE"+c.v;c.m=(d.indexOf("; Touch")!=-1);if(c.v>=8){c.XDR=true}return c}}if(f.Firefox&&f.Firefox.value){c.t=c.FF;c.v=parseFloat(f.Firefox.value);if(c.v<10){c.a="FF"+(c.v*10)}else{c.a="FF"+c.v}c.m=(f.Mozilla&&f.Mozilla.extra&&f.Mozilla.extra.indexOf("Android; ")!=-1);if(c.v>=3.5){c.XDR=true}return c}if((f.Chrome&&f.Chrome.value)||(f.CriOS&&f.CriOS.value)){c.t=c.Ch;c.v=parseFloat(f.Chrome?f.Chrome.value:f.CriOS.value);c.a="Ch"+c.v;c.m=(!(!f.CriOS))||(f.Mozilla&&f.Mozilla.extra&&f.Mozilla.extra.indexOf("; Android ")!=-1);if(c.v>=9){c.XDR=true}return c}if(f.Safari){if(f.Mozilla&&f.Mozilla.extra&&f.Mozilla.extra.indexOf("; Android ")!=-1&&f.AppleWebKit&&f.AppleWebKit.value){c.t=c.WK;c.v=parseFloat(f.AppleWebKit.value);c.a="WK"+parseInt(c.v);c.m=true;if(c.v>=5){c.XDR=true}return c}if(f.Version&&f.Version.value){c.t=c.Sa;c.v=parseFloat(f.Version.value);c.a="Sa"+c.v;c.m=!(!f.Mobile);if(c.v>=5){c.XDR=true}return c}}return false}function WRl(c,a,b){if(c.attachEvent){c.attachEvent("on"+a,b)}else{if(c.addEventListener){c.addEventListener(a,b,false)}}}var ClickTaleFetchFromWithCookies=(function(){var b=[],e,h,d,a,g,c;a=function(n,m){m=m||b;for(var k=0,j=b.length;k=0)){i+="#"}else{i+="&"}i+=f.constructCookiesParam();return i}};return f})(); +/* + * Copyright 2010-2012 ClickTale Ltd. + */ +(function(){var aP=!0,aO=null,aN=!1;function ar(i,g,j){return i.call.apply(i.bind,arguments)}function aQ(i,g,m){if(!i){throw Error()}if(2p){aB.readyState(this.p,p)}else{if(4==p){var g=[];if(m&&"number"==typeof m.length){for(q=m.length;0aD&&(o.responseText="",o.statusText="responseText is larger than MaxResponseSize");n=aO;i=aN;m=this.urlRule;ag()&&m&&(n=s.getResponseHeader.call(s,"X-ClickTale-IMToken"),i=m.s);aB.g(this.p,o.status,o.statusText,o.headers,o.responseText,n,i)}}}this.A=p;return"function"!=typeof this.onreadystatechange?void 0:this.onreadystatechange.apply(this,[])}ai.prototype.open=function(i,g,o,n,m){var j=this.x;"undefined"==typeof o&&(o=aP);aE&&aE(i,g)==aN?this.skip=aP:aB.open(this.p,g,i.toUpperCase());i=j.open(i,g,o,n,m);this.urlRule=aO;if(ag()){o=aO;n=aH.f;for(m=0;m0||this.getFragment());};l.prototype.valueOf=function(){return this.toString();};l.prototype.isFacebookURI=function(){if(!l.$URI5)l.$URI5=new RegExp('(^|\\.)facebook\\.com([^.]*)$','i');return (!this.isEmpty()&&(!this.getDomain()||l.$URI5.test(this.getDomain())));};l.prototype.getRegisteredDomain=function(){if(!this.getDomain())return '';if(!this.isFacebookURI())return null;var n=this.getDomain().split('.'),o=n.indexOf('facebook');return n.slice(o).join('.');};l.prototype.getUnqualifiedURI=function(){return new l(this).setProtocol(null).setDomain(null).setPort(null);};l.prototype.getQualifiedURI=function(){return new l(this).$URI6();};l.prototype.$URI6=function(){if(!this.getDomain()){var n=l();this.setProtocol(n.getProtocol()).setDomain(n.getDomain()).setPort(n.getPort());}return this;};l.prototype.isSameOrigin=function(n){var o=n||window.location.href;if(!(o instanceof l))o=new l(o.toString());if(this.isEmpty()||o.isEmpty())return false;if(this.getProtocol()&&this.getProtocol()!=o.getProtocol())return false;if(this.getDomain()&&this.getDomain()!=o.getDomain())return false;if(this.getPort()&&this.getPort()!=o.getPort())return false;return true;};l.prototype.go=function(n){i(this,n);};l.prototype.setSubdomain=function(n){var o=this.$URI6().getDomain().split('.');if(o.length<=2){o.unshift(n);}else o[0]=n;return this.setDomain(o.join('.'));};l.prototype.getSubdomain=function(){if(!this.getDomain())return '';var n=this.getDomain().split('.');if(n.length<=2){return '';}else return n[0];};h(l,{getRequestURI:function(n,o){n=n===undefined||n;var p=a.PageTransitions;if(n&&p&&p.isInitialized()){return p.getCurrentURI(!!o).getQualifiedURI();}else return new l(window.location.href);},getMostRecentURI:function(){var n=a.PageTransitions;if(n&&n.isInitialized()){return n.getMostRecentURI().getQualifiedURI();}else return new l(window.location.href);},getNextURI:function(){var n=a.PageTransitions;if(n&&n.isInitialized()){return n.getNextURI().getQualifiedURI();}else return new l(window.location.href);},expression:/(((\w+):\/\/)([^\/:]*)(:(\d+))?)?([^#?]*)(\?([^#]*))?(#(.*))?/,arrayQueryExpression:/^(\w+)((?:\[\w*\])+)=?(.*)/,explodeQuery:function(n){if(!n)return {};var o={};n=n.replace(/%5B/ig,'[').replace(/%5D/ig,']');n=n.split('&');var p=Object.prototype.hasOwnProperty;for(var q=0,r=n.length;q=300&&na<=399){ra="Redirection";qa="Your access to Facebook was redirected or blocked by a third party at this time, please contact your ISP or reload. ";var ta=this.transport.getResponseHeader("Location");if(ta)z(ta,true);sa=true;}else{ra="Oops";qa="Something went wrong. We're working on getting this fixed as soon as we can. You may be able to try again.";}!this.getOption('suppressErrorAlerts');var ua=new i(this);v(ua,{error:na,errorSummary:ra,errorDescription:qa,silentError:sa});this._dispatchErrorResponse(ua,pa);},_dispatchErrorResponse:function(ma,na){var oa=ma.getError();try{this.clearStatusIndicator();var qa=this._sendTimeStamp&&{duration:Date.now()-this._sendTimeStamp,xfb_ip:this._xFbServer||'-'};ma.logError('async_error',qa);if(!this._isRelevant()||oa===1010){this.abort();return;}if(oa==1357008||oa==1357007||oa==1442002||oa==1357001){var ra=oa==1357008||oa==1357007;this.interceptHandler(ma);this._displayServerDialog(ma,ra);}else if(this.initialHandler(ma)!==false){clearTimeout(this.timer);try{na(ma);}catch(sa){this.finallyHandler(ma);throw sa;}this.finallyHandler(ma);}}catch(pa){}},_displayServerDialog:function(ma,na){var oa=ma.getPayload();if(oa.__dialog!==undefined){this._displayServerLegacyDialog(ma,na);return;}var pa=oa.__dialogx;new q().handle(pa);j.loadModules(['ConfirmationDialog'],function(qa){qa.setupConfirmation(ma,this);}.bind(this));},_displayServerLegacyDialog:function(ma,na){var oa=ma.getPayload().__dialog;j.loadModules(['Dialog'],function(pa){var qa=new pa(oa);if(na)qa.setHandler(this._displayConfirmationHandler.bind(this,qa));qa.setCancelHandler(function(){var ra=this.getServerDialogCancelHandler();try{ra&&ra(ma);}catch(sa){throw sa;}finally{this.finallyHandler(ma);}}.bind(this)).setCausalElement(this.relativeTo).show();}.bind(this));},_displayConfirmationHandler:function(ma){this.data.confirmed=1;v(this.data,ma.getFormData());this.send();},setJSONPTransport:function(ma){ma.subscribe('response',this._handleJSONPResponse.bind(this));ma.subscribe('abort',this._handleJSONPAbort.bind(this));this.transport=ma;},_handleJSONPResponse:function(ma,na){this.is_first=(this.is_first===undefined);var oa=this._interpretResponse(na);oa.asyncResponse.is_first=this.is_first;oa.asyncResponse.is_last=this.transport.hasFinished();this.invokeResponseHandler(oa);if(this.transport.hasFinished())delete this.transport;},_handleJSONPAbort:function(){this._invokeErrorHandler();delete this.transport;},_handleXHRResponse:function(ma){var na;if(this.getOption('suppressEvaluation')){na={asyncResponse:new i(this,ma)};}else{var oa=ma.responseText,pa=null;try{var ra=this._unshieldResponseText(oa);try{var sa=(eval)('('+ra+')');na=this._interpretResponse(sa);}catch(qa){pa='excep';na={transportError:'eval() failed on async to '+this.getURI()};}}catch(qa){pa='empty';na={transportError:qa.message};}if(pa){var ta=a.ErrorSignal;ta&&ta.sendErrorSignal('async_xport_resp',[(this._xFbServer?'1008_':'1012_')+pa,this._xFbServer||'-',this.getURI(),oa.length,oa.substr(0,1600)].join(':'));}}this.invokeResponseHandler(na);},_unshieldResponseText:function(ma){var na="for (;;);",oa=na.length;if(ma.length<=oa)throw new Error('Response too short on async to '+this.getURI());var pa=0;while(ma.charAt(pa)==" "||ma.charAt(pa)=="\n")pa++;pa&&ma.substring(pa,pa+oa)==na;return ma.substring(pa+oa);},_interpretResponse:function(ma){if(ma.redirect)return {redirect:ma.redirect};var na=new i(this);if(ma.__ar!=1){na.payload=ma;}else v(na,ma);return {asyncResponse:na};},_onStateChange:function(){try{if(this.transport.readyState==4){ka._inflightCount--;ka._inflightPurge();try{if(typeof(this.transport.getResponseHeader)!=='undefined'&&this.transport.getResponseHeader('X-FB-Debug'))this._xFbServer=this.transport.getResponseHeader('X-FB-Debug');}catch(na){}if(this.transport.status>=200&&this.transport.status<300){ka.lastSuccessTime=Date.now();this._handleXHRResponse(this.transport);}else if(s.webkit()&&(typeof(this.transport.status)=='undefined')){this._invokeErrorHandler(1002);}else if(l.retry_ajax_on_network_error&&ga(this.transport)&&this.remainingRetries>0){this.remainingRetries--;delete this.transport;this.send(true);return;}else this._invokeErrorHandler();if(this.getOption('asynchronous')!==false)delete this.transport;}}catch(ma){if(da())return;delete this.transport;if(this.remainingRetries>0){this.remainingRetries--;this.send(true);}else{!this.getOption('suppressErrorAlerts');var oa=a.ErrorSignal;oa&&oa.sendErrorSignal('async_xport_resp',[1007,this._xFbServer||'-',this.getURI(),ma.message].join(':'));this._invokeErrorHandler(1007);}}},_isMultiplexable:function(){if(this.getOption('jsonp')||this.getOption('useIframeTransport'))return false;if(!this.uri.isFacebookURI())return false;if(!this.getOption('asynchronous'))return false;return true;},handleResponse:function(ma){var na=this._interpretResponse(ma);this.invokeResponseHandler(na);},setMethod:function(ma){this.method=ma.toString().toUpperCase();return this;},getMethod:function(){return this.method;},setData:function(ma){this.data=ma;return this;},_setDataHash:function(){if(this.method!='POST'||this.data.phstamp)return;var ma=r.implodeQuery(this.data).length,na='';for(var oa=0;oaja;},clearStatusIndicator:function(){var ma=this.getStatusElement();if(ma){k.removeClass(ma,'async_saving');k.removeClass(ma,this.statusClass);}},addStatusIndicator:function(){var ma=this.getStatusElement();if(ma){k.addClass(ma,'async_saving');k.addClass(ma,this.statusClass);}},specifiesWriteRequiredParams:function(){return this.writeRequiredParams.every(function(ma){this.data[ma]=this.data[ma]||l[ma]||(y(ma)||{}).value;if(this.data[ma]!==undefined)return true;return false;},this);},setOption:function(ma,na){if(typeof(this.option[ma])!='undefined')this.option[ma]=na;return this;},getOption:function(ma){typeof(this.option[ma])=='undefined';return this.option[ma];},abort:function(){if(this.transport){var ma=this.getTransportErrorHandler();this.setOption('suppressErrorAlerts',true);this.setTransportErrorHandler(w);this._requestAborted=true;this.transport.abort();this.setTransportErrorHandler(ma);}this.abortHandler();},abandon:function(){clearTimeout(this.timer);this.setOption('suppressErrorAlerts',true).setHandler(w).setErrorHandler(w).setTransportErrorHandler(w);if(this.transport){this._requestAborted=true;this.transport.abort();}},setNectarData:function(ma){if(ma){if(this.data.nctr===undefined)this.data.nctr={};v(this.data.nctr,ma);}return this;},setNectarModuleDataSafe:function(ma){if(this.setNectarModuleData)this.setNectarModuleData(ma);return this;},setNectarImpressionIdSafe:function(){if(this.setNectarImpressionId)this.setNectarImpressionId();return this;},setAllowCrossPageTransition:function(ma){this._allowCrossPageTransition=!!ma;if(this.timer)this.resetTimeout(this.timeout);return this;},setAllowCrossOrigin:function(ma){this._allowCrossOrigin=!!ma;return this;},send:function(ma){ma=ma||false;if(!this.uri)return false;!this.errorHandler&&!this.getOption('suppressErrorHandlerWarning');if(this.getOption('jsonp')&&this.method!='GET')this.setMethod('GET');if(this.getOption('useIframeTransport')&&this.method!='GET')this.setMethod('GET');this.timeoutHandler!==null&&(this.getOption('jsonp')||this.getOption('useIframeTransport'));if(!this.getReadOnly()){this.specifiesWriteRequiredParams();if(this.method!='POST')return false;}v(this.data,t.getAsyncParams(this.method));if(!aa(this.context)){v(this.data,this.context);this.data.ajax_log=1;}if(l.force_param)v(this.data,l.force_param);this._setUserActionID();if(this.getOption('bundle')&&this._isMultiplexable()){la.schedule(this);return true;}this.setNewSerial();if(!this.getOption('asynchronous'))this.uri.addQueryData({__s:1});this.finallyHandler=a.async_callback(this.finallyHandler,'final');var na,oa;if(this.method=='GET'||this.rawData){na=this.uri.addQueryData(this.data).toString();oa=this.rawData||'';}else{na=this.uri.toString();this._setDataHash();oa=r.implodeQuery(this.data);}if(this.transport)return false;if(this.getOption('jsonp')||this.getOption('useIframeTransport')){d(['JSONPTransport'],function(sa){var ta=new sa(this.getOption('jsonp')?'jsonp':'iframe',this.uri);this.setJSONPTransport(ta);ta.send();}.bind(this));return true;}var pa=t.create();if(!pa)return false;pa.onreadystatechange=a.async_callback(this._onStateChange.bind(this),'xhr');if(this.uploadProgressHandler&&ea(pa))pa.upload.onprogress=this.uploadProgressHandler.bind(this);if(!ma)this.remainingRetries=this.getOption('retries');if(a.ErrorSignal||a.ArbiterMonitor)this._sendTimeStamp=this._sendTimeStamp||Date.now();this.transport=pa;try{this.transport.open(this.method,na,this.getOption('asynchronous'));}catch(qa){return false;}var ra=l.svn_rev;if(ra)this.transport.setRequestHeader('X-SVN-Rev',String(ra));if(!this.uri.isSameOrigin()&&!this.getOption('jsonp')&&!this.getOption('useIframeTransport')){if(!fa(this.transport))return false;if(this.uri.isFacebookURI())this.transport.withCredentials=true;}if(this.method=='POST'&&!this.rawData)this.transport.setRequestHeader('Content-Type','application/x-www-form-urlencoded');this.addStatusIndicator();this.transport.send(oa);if(this.timeout!==null)this.resetTimeout(this.timeout);ka._inflightCount++;ka._inflightAdd(this);return true;}});function la(){this._requests=[];}v(la,{multiplex:null,schedule:function(ma){if(!la.multiplex){la.multiplex=new la();(function(){la.multiplex.send();la.multiplex=null;}).defer();}la.multiplex.add(ma);}});v(la.prototype,{add:function(ma){this._requests.push(ma);},send:function(){var ma=this._requests;if(!ma.length)return;var na;if(ma.length===1){na=ma[0];}else{var oa=ma.map(function(pa){return [pa.uri.getPath(),r.implodeQuery(pa.data)];});na=new ka('/ajax/proxy.php').setAllowCrossPageTransition(true).setData({data:oa}).setHandler(this._handler.bind(this)).setTransportErrorHandler(this._transportErrorHandler.bind(this));}na.setOption('bundle',false).send();},_handler:function(ma){var na=ma.getPayload().responses;if(na.length!==this._requests.length)return;for(var oa=0;oa60000))w=true;var ha=!ga&&(document.cookie.search(l)>=0),ia=!!h.cookie_header_limit,ja=h.cookie_count_limit||19,ka=h.cookie_header_limit||3950,la=ja-5,ma=ka-1000;while(!this.isEmpty()){var na=y(this.peek());if(ia&&(na.length>ka||(w&&na.length+v>ka))){this.dequeue();continue;}if((ha||ia)&&((document.cookie.length+na.length>ka)||(document.cookie.split(';').length>ja)))break;document.cookie=na;ha=true;this.dequeue();}var oa=Date.now();if(ga||!da&&ha&&((fa>0)&&(Math.min(10*Math.pow(2,fa-1),60000)+eama)||(document.cookie.split(';').length>la))){var pa=new Image(),qa=this,ra=h.tracking_domain||'';da=true;pa.onload=function ua(){da=false;fa=0;qa.clear();};pa.onerror=pa.onabort=function ua(){da=false;ea=Date.now();fa++;};var sa=h.fb_isb?'&fb_isb='+h.fb_isb:'',ta='&__user='+h.user;pa.src=ra+'/ajax/nectar.php?asyncSignal='+(Math.floor(Math.random()*10000)+1)+sa+ta+'&'+(!ga?'':'s=')+oa;}};}t=new z();if(u){var aa=function(){var ca=0,da=ca;function ea(){var ha=sessionStorage.getItem('_e_ids');if(ha){var ia=(ha+'').split(';');if(ia.length==2){ca=parseInt(ia[0],10);da=parseInt(ia[1],10);}}}function fa(){var ha=ca+';'+da;sessionStorage.setItem('_e_ids',ha);}function ga(ha){return '_e_'+((ha!==undefined)?ha:ca++);}this.isEmpty=function(){return da===ca;};this.enqueue=function(ha,ia){var ja=ia?ga(--da):ga();sessionStorage.setItem(ja,ha);fa();};this.dequeue=function(){this.isEmpty();sessionStorage.removeItem(ga(da));da++;fa();};this.peek=function(){var ha=sessionStorage.getItem(ga(da));return ha?(ha+''):ha;};this.clear=t.clear;ea();};t=new aa();}var ba={log:function(ca,da,ea){if(h.no_cookies)return;var fa=[m,Date.now(),ca].concat(da);fa.push(fa.length);function ga(){var ha=JSON.stringify(fa);try{t.enqueue(ha,!!ea);t.clear(!!ea);}catch(ia){if(u&&(ia.code===1000)){t=new z();u=false;ga();}}}ga();},getSessionID:function(){return m;}};e.exports=ba;a.EagleEye=ba;},3); +__d("AdblockDetectorLogging",["AdblockDetector","EagleEye"],function(a,b,c,d,e,f){var g=b('AdblockDetector'),h=b('EagleEye');function i(j){g.assertUnblocked(j,h.log.bind(h,'ads',{event:'ads_blocked'}));}f.assertUnblocked=i;}); +__d("csx",[],function(a,b,c,d,e,f){function g(h){throw new Error('csx(...): Unexpected class selector transformation.');}e.exports=g;}); +__d("HTML",["function-extensions","Bootloader","UserAgent","copyProperties","createArrayFrom","emptyFunction","evalGlobal"],function(a,b,c,d,e,f){b('function-extensions');var g=b('Bootloader'),h=b('UserAgent'),i=b('copyProperties'),j=b('createArrayFrom'),k=b('emptyFunction'),l=b('evalGlobal');function m(n){if(n&&typeof n.__html=='string')n=n.__html;if(!(this instanceof m)){if(n instanceof m)return n;return new m(n);}this._content=n;this._defer=false;this._extra_action='';this._nodes=null;this._inline_js=k;this._rootNode=null;return this;}m.isHTML=function(n){return n&&(n instanceof m||n.__html!==undefined);};m.replaceJSONWrapper=function(n){return n&&n.__html!==undefined?new m(n.__html):n;};i(m.prototype,{toString:function(){var n=this._content||'';if(this._extra_action)n+='Facebook + + + + + + +
    + + + \ No newline at end of file diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/logo.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/logo.png new file mode 100644 index 0000000..76eb07c Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/logo.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/logo_libelium.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/logo_libelium.png new file mode 100644 index 0000000..5d5d5ee Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/logo_libelium.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/luis1.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/luis1.png new file mode 100644 index 0000000..a1523a4 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/luis1.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/luis2.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/luis2.png new file mode 100644 index 0000000..b9101d4 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/luis2.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/luis_conectado.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/luis_conectado.png new file mode 100644 index 0000000..726bc97 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/luis_conectado.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/medida_glucosa.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/medida_glucosa.png new file mode 100644 index 0000000..36382f8 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/medida_glucosa.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montaje3.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montaje3.png new file mode 100644 index 0000000..454a218 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montaje3.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montaje_luis_canula_airflow.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montaje_luis_canula_airflow.png new file mode 100644 index 0000000..8d48483 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montaje_luis_canula_airflow.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montaje_parches.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montaje_parches.png new file mode 100644 index 0000000..7ab5284 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montaje_parches.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montando_glucometro.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montando_glucometro.png new file mode 100644 index 0000000..3fa98f2 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/montando_glucometro.png differ diff --git "a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/mu\303\261eco.png" "b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/mu\303\261eco.png" new file mode 100644 index 0000000..26c96cd Binary files /dev/null and "b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/mu\303\261eco.png" differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla1.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla1.png new file mode 100644 index 0000000..0fd10a4 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla1.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla2.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla2.png new file mode 100644 index 0000000..dfef8c8 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla2.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla3.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla3.png new file mode 100644 index 0000000..f26a194 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla3.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla4.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla4.png new file mode 100644 index 0000000..da353f5 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla4.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla5.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla5.png new file mode 100644 index 0000000..2930a27 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pantalla5.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/parches+e_health1.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/parches+e_health1.png new file mode 100644 index 0000000..32d225c Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/parches+e_health1.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/parches_presentacion(1).png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/parches_presentacion(1).png new file mode 100644 index 0000000..3653014 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/parches_presentacion(1).png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/parches_presentacion.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/parches_presentacion.png new file mode 100644 index 0000000..380fd7d Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/parches_presentacion.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pegatina_tensiometro.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pegatina_tensiometro.png new file mode 100644 index 0000000..faee019 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pegatina_tensiometro.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pinchando_dedo.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pinchando_dedo.png new file mode 100644 index 0000000..5274c85 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pinchando_dedo.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/positions.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/positions.png new file mode 100644 index 0000000..f8aeec0 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/positions.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/presentacion_glucometro.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/presentacion_glucometro.png new file mode 100644 index 0000000..ce110c2 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/presentacion_glucometro.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/prueba_glucosa.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/prueba_glucosa.png new file mode 100644 index 0000000..ede5251 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/prueba_glucosa.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/prueba_glucosa1.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/prueba_glucosa1.png new file mode 100644 index 0000000..f641ec8 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/prueba_glucosa1.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsando_boton_pulsometro.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsando_boton_pulsometro.png new file mode 100644 index 0000000..e85b8e8 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsando_boton_pulsometro.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro.png new file mode 100644 index 0000000..3b7e9b9 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_conectando_e_health.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_conectando_e_health.png new file mode 100644 index 0000000..d171ab1 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_conectando_e_health.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_dedo.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_dedo.png new file mode 100644 index 0000000..48b9e3d Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_dedo.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_negro_dedo.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_negro_dedo.png new file mode 100644 index 0000000..92febfb Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_negro_dedo.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_pecho_presentacion.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_pecho_presentacion.png new file mode 100644 index 0000000..12d3a83 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/pulsometro_pecho_presentacion.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/quitando_pegatinas_parches.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/quitando_pegatinas_parches.png new file mode 100644 index 0000000..dc9fe1e Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/quitando_pegatinas_parches.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/raspberry_e_heatlh.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/raspberry_e_heatlh.png new file mode 100644 index 0000000..860e6b0 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/raspberry_e_heatlh.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/rss_icon.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/rss_icon.png new file mode 100644 index 0000000..871e4dd Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/rss_icon.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/sensor_dedo.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/sensor_dedo.png new file mode 100644 index 0000000..4164462 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/sensor_dedo.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/sensor_dedo_puesto.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/sensor_dedo_puesto.png new file mode 100644 index 0000000..4a2e348 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/sensor_dedo_puesto.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensiometro+e_health.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensiometro+e_health.png new file mode 100644 index 0000000..ba7288f Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensiometro+e_health.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensiometro_conector.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensiometro_conector.png new file mode 100644 index 0000000..d71179d Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensiometro_conector.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensiometro_presentacion.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensiometro_presentacion.png new file mode 100644 index 0000000..5bb40d8 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensiometro_presentacion.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensionometer_man.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensionometer_man.png new file mode 100644 index 0000000..cdaabac Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tensionometer_man.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tmp.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tmp.png new file mode 100644 index 0000000..acc1873 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/tmp.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/todos_elementos.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/todos_elementos.png new file mode 100644 index 0000000..be9403d Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/todos_elementos.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/twitter_icon.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/twitter_icon.png new file mode 100644 index 0000000..6750247 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/twitter_icon.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/velcro.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/velcro.png new file mode 100644 index 0000000..e7ee7d0 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/velcro.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/velcros_conectando_e_health.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/velcros_conectando_e_health.png new file mode 100644 index 0000000..ae27a30 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/velcros_conectando_e_health.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/youtube_icon.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/youtube_icon.png new file mode 100644 index 0000000..2e993fb Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/youtube_icon.png differ diff --git a/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/yuri.png b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/yuri.png new file mode 100644 index 0000000..560d98e Binary files /dev/null and b/ECG_app project/Reference materials/e-Health Sensor Platform for Arduino and Raspberry Pi [Biometric Medical Applications]_files/yuri.png differ diff --git a/ECG_app project/Reference materials/e-Health_v3.pdf b/ECG_app project/Reference materials/e-Health_v3.pdf new file mode 100644 index 0000000..57bdbe6 Binary files /dev/null and b/ECG_app project/Reference materials/e-Health_v3.pdf differ diff --git a/ECG_app project/Reference materials/raspberry_e_heatlh.png b/ECG_app project/Reference materials/raspberry_e_heatlh.png new file mode 100644 index 0000000..860e6b0 Binary files /dev/null and b/ECG_app project/Reference materials/raspberry_e_heatlh.png differ diff --git a/ECG_app project/Sample data/SP01LA0_01.csv b/ECG_app project/Sample data/SP01LA0_01.csv new file mode 100644 index 0000000..c9e2a00 --- /dev/null +++ b/ECG_app project/Sample data/SP01LA0_01.csv @@ -0,0 +1,12076 @@ +1.779080999999999912e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 diff --git a/ECG_app project/Sample data/SP01LA0_02.csv b/ECG_app project/Sample data/SP01LA0_02.csv new file mode 100644 index 0000000..59d6a2e --- /dev/null +++ b/ECG_app project/Sample data/SP01LA0_02.csv @@ -0,0 +1,11281 @@ +1.959921999999999942e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 diff --git a/ECG_app project/Sample data/SP01LA0_03.csv b/ECG_app project/Sample data/SP01LA0_03.csv new file mode 100644 index 0000000..6d6118d --- /dev/null +++ b/ECG_app project/Sample data/SP01LA0_03.csv @@ -0,0 +1,11364 @@ +1.798631000000000091e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.862170000000000103e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.798631000000000091e+00 diff --git a/ECG_app project/Sample data/SP01LA0_04.csv b/ECG_app project/Sample data/SP01LA0_04.csv new file mode 100644 index 0000000..8e2f051 --- /dev/null +++ b/ECG_app project/Sample data/SP01LA0_04.csv @@ -0,0 +1,9169 @@ +1.779080999999999912e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 diff --git a/ECG_app project/Sample data/SP01LA0_05.csv b/ECG_app project/Sample data/SP01LA0_05.csv new file mode 100644 index 0000000..3f29400 --- /dev/null +++ b/ECG_app project/Sample data/SP01LA0_05.csv @@ -0,0 +1,11764 @@ +1.759530999999999956e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.862170000000000103e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.524926999999999921e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.544477000000000100e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.862170000000000103e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.739980000000000082e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.779080999999999912e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.194526000000000199e+00 +2.214075999999999933e+00 +2.214075999999999933e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.214075999999999933e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.194526000000000199e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.798631000000000091e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +1.999022000000000077e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.096773999999999916e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.920820999999999890e+00 +1.940371999999999986e+00 +1.959921999999999942e+00 +1.979471999999999898e+00 +1.999022000000000077e+00 +2.038123000000000129e+00 +2.057672999999999863e+00 +2.077224000000000181e+00 +2.077224000000000181e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.135874999999999968e+00 +2.135874999999999968e+00 +2.155425000000000146e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.174976000000000020e+00 +2.155425000000000146e+00 +2.155425000000000146e+00 +2.135874999999999968e+00 +2.116324000000000094e+00 +2.116324000000000094e+00 +2.096773999999999916e+00 +2.077224000000000181e+00 +2.057672999999999863e+00 +2.038123000000000129e+00 +2.018572999999999951e+00 +2.018572999999999951e+00 +1.999022000000000077e+00 +1.979471999999999898e+00 +1.959921999999999942e+00 +1.959921999999999942e+00 +1.940371999999999986e+00 +1.920820999999999890e+00 +1.920820999999999890e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.568915000000000060e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.588465000000000016e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.608015999999999890e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.627566000000000068e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.647116000000000025e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.666666999999999899e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.681329000000000073e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.700879999999999947e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.862170000000000103e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.901270999999999933e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.881720000000000059e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.857283000000000017e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.837731999999999921e+00 +1.837731999999999921e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.818181999999999965e+00 +1.818181999999999965e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.798631000000000091e+00 +1.798631000000000091e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.720429999999999904e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.739980000000000082e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.759530999999999956e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.779080999999999912e+00 +1.759530999999999956e+00 diff --git a/ECG_app project/Sample data/info.txt b/ECG_app project/Sample data/info.txt new file mode 100644 index 0000000..543f3c4 --- /dev/null +++ b/ECG_app project/Sample data/info.txt @@ -0,0 +1,2 @@ +Sampleing Rate : 1000khz / 1000 samples/sec +voltage range : 0 to 5V \ No newline at end of file