MESSENGER MASCS UVVS CDR TO SURFACE DDR PROCEDURES Version 2, 3/21/2017 Document Review William McClintock, MESSENGER Cognizant Co-Investigator/MASCS, has reviewed and approved this document. Noam Izenberg, MESSENGER MASCS Instrument Scientist, has reviewed and approved this document. Document Change History Version 1, 12/3/2013, C. Mauceri, ACT Version submitted for first Surface DDR delivery (PDS Delivery 11). Version 2, 3/21/2017, C. Mauceri, ACT Revised and added calibration procedures and tables. * batch_calibrate_uvvs_surf_ddrs (revised) * uvvs_derive_muv_reflectance (revised) * uvvsddr_surf_hdr_2_ascii (revised) * uvvsddr_surf_sci_2_ascii (revised) * uvvs_derive_fuv_reflectance (added) * define_virs_common_data (added) * Solar irradiance spectrum table (added) * Solar irradiance time series table (added) MASCS UVVS CDR to Surface DDR pseudocode. This document describes high level "pseudocode" and tables which define the procedures used to convert MASCS UVVS Calibrated Data Records (CDRs) to Surface Derived Data Records (DDRs). This pseudocode follows logic and language structures that make it easily adaptable to a number of programming languages, but is not considered to be functional code in and of itself. It will be updated by the MASCS team as the calibrations are refined, but it is not supported, deliverable code. The PROCEDURES that are included; ;----------------------------------------------------------------------------- ; * batch_calibrate_uvvs_surf_ddrs - opens each of the kickoff files passed ; in cdr_files and runs the calibration algorithm on them. For each one ; it writes a CSV file for the Science DDR and a CSV file for the Header ; DDR. ;----------------------------------------------------------------------------- ;----------------------------------------------------------------------------- ; * mascs_normalize_photometry - returns factor to apply to the data to ; normalize it to a phase angle of 90deg. ;----------------------------------------------------------------------------- ;----------------------------------------------------------------------------- ; * uvvs_cdr_2_ddr_surf_batch - searches an incoming directory for files ; that contain paths to UVVS obs cdr files. CDR kickoff files will then ; be processed and data needed for the DDR are then written out to an ; ascii file for further processing into binary DDRs. ;----------------------------------------------------------------------------- ;----------------------------------------------------------------------------- ; * uvvs_derive_muv_reflectance - derives surface reflectance from surface ; observations by the UVVS-MUV channel. ;----------------------------------------------------------------------------- ;----------------------------------------------------------------------------- ; * uvvsddr_surf_hdr_2_ascii - writes the UVVS Surface Reflectance DDR ; header structure into a csv file. ;----------------------------------------------------------------------------- ;----------------------------------------------------------------------------- ; * uvvsddr_surf_sci_2_ascii - writes the UVVS Surface Reflectance DDR ; science structure into a csv file ;----------------------------------------------------------------------------- ;----------------------------------------------------------------------------- ; * uvvs_derive_fuv_reflectance - derives surface reflectance from surface ; observations by the UVVS-FUV channel. ;----------------------------------------------------------------------------- ; * define_virs_common_data - define paths and common blocks ;----------------------------------------------------------------------------- The following TABLES are included: ;----------------------------------------------------------------------------- ; SOLAR IRRADIANCE SPECTRUM TABLE ;----------------------------------------------------------------------------- ;----------------------------------------------------------------------------- ; SOLAR IRRADIANCE TIME SERIES TABLE ;----------------------------------------------------------------------------- ;***************************************************************************** ; U V V S P R O C E D U R E S ;***************************************************************************** ;----------------------------------------------------------------------------- ; * batch_calibrate_uvvs_surf_ddrs - opens each of the kickoff files passed ; in cdr_files and runs the calibration algorithm on them. For each one ; it writes a CSV file for the Science DDR and a CSV file for the Header ; DDR. ;----------------------------------------------------------------------------- pro batch_calibrate_uvvs_surf_ddrs,kickoff_files,finalhdr_path,finalsci_path ;this idl program will open each of the kickoff files passed in edr_files ;and run the calibration algorithm on them. For each one it will write a CSV file for the ;Science DDR and a CSV file for the Header DDR ;Science DDR is written to the finalsci_path, Header DDR is written to the finalhdr_path print, 'running batch_calibrate_uvvs_surf_ddrs\n' n_kickoff_files = n_elements(kickoff_files) max_kickoff_files = 5000000 if n_kickoff_files gt max_kickoff_files then begin n_kickoff_files = max_kickoff_files print, 'n_kickoff_files:',n_kickoff_files print,' > max. will only process up to:',max_kickoff_files endif for file_i=0,n_kickoff_files-1 do begin ;the kickoff files contain two lines. First line is the complete path and filename to a given UVVS Header CDR .DAT FILE! ;Second line is the complete path and filename to the given UVVS Science CDR .DAT file! ;The kickoff files should be the complete path to the filename! i_kickoff_file = kickoff_files[file_i] ;open and read the kickoff file. print, 'count:',file_i print, 'opening kickoff file ',i_kickoff_file cdr_header_file = '' cdr_science_file = '' openr,runit,i_kickoff_file,/get_lun readf,runit,cdr_header_file readf,runit,cdr_science_file close,runit free_lun,runit ;retrieve the CDR base filename for header and science CDRs. ;NOTE! This assumes that the CDR file naming convention has a fixed length. ;THIS IS HARDCODED! IF THE FILE NAMING CONVENTION CHANGES THEN THIS NEEDS TO BE UPDATED path_len = STRLEN(cdr_header_file) file_start = path_len-31 header_base_name = STRMID(cdr_header_file,file_start,28) science_base_name = STRMID(cdr_science_file,file_start,28) ; filename example UFC_ORB_63_11333_234230_SCI detector_id = STRMID(science_base_name, 1, 1) ;run the calibration routines on this edr. print, 'working on header cdr:',cdr_header_file print, 'working on science cdr:',cdr_science_file if detector_id eq 'M' then begin print, 'MUV file' detector = 'MUV' uvvs_derive_muv_reflectance, cdr_science_file,cdr_header_file, ddr_sci,ddr_hdr endif else if detector_id eq 'F' then begin print, 'FUV file' detector = 'FUV' uvvs_derive_fuv_reflectance, cdr_science_file,cdr_header_file, ddr_sci,ddr_hdr endif else begin print, 'detector not supported' return endelse ;write to the DDR Header CSV file in the Incoming path designated for the Header DDR header_csv_file = header_base_name + 'csv' ddr_hdr_fname = finalhdr_path+header_csv_file print, 'writing DDR header data to ',ddr_hdr_fname ;copy the method in uvvsddr_surf_sci_2_ascii.pro. Use the uvvs_cdr_ddr_sis_for_review.doc ;to see what columns need to be written to the csv file ;use init_mascs_cdr_temmplates_5.pro to see what the column names are in the ddr_hdr structure. uvvsddr_surf_hdr_2_ascii,ddr_hdr,ddr_sci,ddr_hdr_fname ;write to the DDR Science CSV file in the Incoming path designated for the Science DDR science_csv_file = science_base_name + 'csv' ddr_sci_fname = finalsci_path+science_csv_file print, 'writing DDR science data to ',ddr_sci_fname uvvsddr_surf_sci_2_ascii,ddr_sci,ddr_sci_fname,detector=detector ;delete the kickoff file from the old location ;NOTE: delete file here in order to keep it in case the calibration fails print, ' deleting kickoff file:',i_kickoff_file FILE_DELETE,i_kickoff_file endfor end ;----------------------------------------------------------------------------- ; * mascs_normalize_photometry - returns factor to apply to the data to ; normalize it to a phase angle of 90deg. ;----------------------------------------------------------------------------- ; ; inputs: ; inc: incidence angle (degrees) ; emis: emission angle (degrees) ; phase: phase angle (degrees) ; output: ; fac (the factor to apply to the data to normalize it to a phase angle of 90deg) ; optional keyword inputs: ; inc_norm: default is 45deg ; emis_norm: default is 45deg ; phase_norm: default is 90deg ; the value for the phase curve was obtained by photometric fitting using the routine uvvs_surface_orbit_analysis5.pro ; pro mascs_normalize_photometry, inc, emis, phase, fac, inc_norm=inc_norm, emis_norm=emis_norm, phase_norm=phase_norm if keyword_set(inc_norm) eq 0 then inc_norm = 45. if keyword_set(emis_norm) eq 0 then emis_norm = 45. if keyword_set(phase_norm) eq 0 then phase_norm = 90. ;p = [0.0305246, -0.000192598] p = [0.0576184, -0.000352463] fac1 = (cos(inc_norm*!dtor)/(cos(inc_norm*!dtor)+cos(emis_norm*!dtor))) / (cos(inc*!dtor)/(cos(inc*!dtor)+cos(emis*!dtor))) ; Lommel-Seeliger term fac2 = (p[0] + phase_norm*p[1]) / (p[0] + phase*p[1]) ; linear phase function of the range 75-105deg fac = fac1 * fac2 ; inc_norm = 45. ; emis_norm = 45. ; phase_norm = 90. ; print, (cos(inc_norm*!dtor)/(cos(inc_norm*!dtor)+cos(emis_norm*!dtor))) * (p[0] + phase_norm*p[1]) end ;----------------------------------------------------------------------------- ; * uvvs_cdr_2_ddr_surf_batch - searches an incoming directory for files ; that contain paths to UVVS obs cdr files. CDR kickoff files will then ; be processed and data needed for the DDR are then written out to an ; ascii file for further processing into binary DDRs. ;----------------------------------------------------------------------------- pro uvvs_cdr_2_ddr_surf_batch ;this idl program will search an incoming directory for files that contain paths ;to UVVS obs CDR files. These are CDR files meeting the criteria needed for generating a surface ;reflectance DDR. One critical criteria is that the CDR needs to be composed of records where the FOV intersects the ;surface of Mercury and thus composed of measurements of the Mercury surface reflectance. ; ;Hence the name - SURFACE REFLECTANCE DDR. ; ;CDR kickoff files will then be processed and DDR csv files created. ;Wipe Dispatch will then take the DDR csv files and turn them into DDR data and labels. print, 'running uvvs_cdr_2_ddr_surf_batch\n' ;look for incoming files in the uvvs_obs/ddr_storage path!. Also create any intermediate products here storage_path = '/project/messenger/SOC/pipe/data/uvvs_obs/ddr_storage/' ;paths for the Wipe_Dispatch portion of DDR processing here ;for uvvs sci hdr ddrs: finalhdr_path = '/project/messenger/SOC/pipe/data/incoming/pipesoc/uvvs_surf_hdr_ddr/' ;for uvvs science ddrs: finalsci_path = '/project/messenger/SOC/pipe/data/incoming/pipesoc/uvvs_surf_sci_ddr/' ;search for MUV kickoff files. Look directly in the storage path. No need to pretend to be like PIPE ;Only MUV detector will be turned into DDR for now. detector = 'MUV' find_uvvs_surf_ddr_kickoff_files,storage_path,detector,kickoff_files,num_kickoff_files if num_kickoff_files gt 0 then begin print, 'found uvvs muv kickoff files:',num_kickoff_files ;run the calibration routines batch_calibrate_uvvs_surf_ddrs,kickoff_files,finalhdr_path,finalsci_path endif exit end ;----------------------------------------------------------------------------- ; * uvvs_derive_muv_reflectance - derives surface reflectance from surface ; observations by the UVVS-MUV channel. ;----------------------------------------------------------------------------- pro UVVS_DERIVE_MUV_REFLECTANCE, filename_dat, filename_hdr, ddr_sci_arr, ddr_hdr_arr, user=user ; ;+ ; NAME: ; UVVS_DERIVE_MUV_REFLECTANCE ; ; PURPOSE: ; This procedure will derive surface reflectance from surface observations by the UVVS-MUV channel. ; ; CALLING SEQUENCE: ; UVVS_DERIVE_MUV_REFLECTANCE, Filename_dat, Filename_hdr, Arr ; ; INPUTS: ; Filename_dat: Filename of a UVVS MUV CDR science data file. ; Filename_hdr: Filename of a UVVS MUV CDR science header file. ; ; KEYWORD PARAMETERS: ; USER: (optional) Only 'Holsclaw' is currently allowed, and if uspecified it is assumed this routine runs at ACT. ; This allows the definition of unique local file paths to the support data files. ; ; OUTPUTS: ; ddr_sci_arr: UVVS Science DDR as an array of structures containing derived reflectance and anciallary data. ; ddr_hdr_arr: UVVS Header DDR as an array of structures containing the data from the UVVS CDR header file ; ; RESTRICTIONS: ; required subroutines: ; mascs_normalize_photometry.pro: Routine to normalize photometric variation. ; read_mascs_cdr_6: Read in CDR data file. ; ; required files: ; uvvs_sensitivity_2_1_2008.sav: Original UVVS sensitivity, an IDL save file. ; solar_irradiance_composite_for_uvvs_surface_reflectance.sav: Solar irradiance spectrum, an IDL save file. ; ; EXAMPLE: ; EXAMPLE1 ; ; filename_dat = '/ORB/MASCS20110422/UVVS/MUV/UMC_ORB_48_11112_111324_SCI.DAT ; filename_hdr = '/ORB/MASCS20110422/UVVS/MUV/UMC_ORB_48_11112_111324_HDR.DAT ; UVVS_DERIVE_MUV_REFLECTANCE, filename_dat, filename_hdr, arr ; ; MODIFICATION HISTORY: ; Written by: Greg Holsclaw, May 23, 2013 ; Modified by: Ray Espiritu, June 25, 2013 to be generalized and work within a cron job ; Modified by: Greg Holsclaw, Aug 1, 2016 to allow for user-specific file paths if n_params() eq 0 then begin user = 'Holsclaw' endif ;1 Astronomical Unit = 149 598 000 kilometers au = 149598000.d ; TODO: create and use a COMMON block in "define_virs_common_data" ; ; Specify the location of local support files, depending on the value of the user keyword. ; if keyword_set(user) then begin if user eq 'Holsclaw' then begin ;fsave_solar_spectrum = '/Users/holsclaw/data_resources/Sun/LISIRD/solar_irradiance_composite_for_uvvs_surface_reflectance.sav' ;fsave_uvvs_sensitivity = '/Users/holsclaw/IDL_utilities/UVVS sensitivity/uvvs_sensitivity_2_1_2008.sav' fsave_solar_spectrum = '/Users/holsclaw/MESSENGER/sdc/MASCS/UVVS/SURFACE_DDR/solar_irradiance_composite_for_uvvs_surface_reflectance.sav' fsave_uvvs_sensitivity = '/Users/holsclaw/MESSENGER/sdc/MASCS/UVVS/CDR/uvvs_sensitivity_2_1_2008.sav' endif endif else begin ;initialize base APL path where MASCS IDL code and supplementary files are stored APL_base_path = 'C:/ACT/Default_Wipe/IDL/UVVS_FUV_DDR/MASCS' ; files with APL paths fsave_solar_spectrum = APL_base_path + '/UVVS/SURFACE_DDR/data/solar_irradiance_composite_for_uvvs_surface_reflectance.sav' fsave_uvvs_sensitivity = APL_base_path + '/UVVS/CDR/uvvs_sensitivity_2_1_2008.sav' endelse ; ; offset wavelength - all signal below this wavelength is considered scattered light, and subtracted ; wl_offset = 200. ;NOTE: this only works at LASP, not at APL SOC. If you want to test at APL SOC then write a wrapper script that ;calls this procedure with arguments! if n_params() eq 0 and keyword_set(user) then begin if user eq 'Holsclaw' then begin filename_dat = '/Volumes/mascs_data/apl/mascs_uvvs_cdr_rdr/CDR/ORB/MASCS20110422/UVVS/MUV/UMC_ORB_48_11112_111324_SCI.DAT' filename_hdr = '/Volumes/mascs_data/apl/mascs_uvvs_cdr_rdr/CDR/ORB/MASCS20110422/UVVS/MUV/UMC_ORB_48_11112_111324_HDR.DAT' filename_dat = '/Volumes/mascs_data/apl/mascs_uvvs_cdr_rdr/CDR/ORB/MASCS20110511/UVVS/MUV/UMC_ORB_49_11131_210736_SCI.DAT' filename_hdr = '/Volumes/mascs_data/apl/mascs_uvvs_cdr_rdr/CDR/ORB/MASCS20110511/UVVS/MUV/UMC_ORB_49_11131_210736_HDR.DAT' ; /ORB/MASCS20110511/UVVS/MUV/UMC_ORB_49_11131_210736_SCI.DAT ; /ORB/MASCS20110511/UVVS/MUV/UMC_ORB_49_11131_210736_HDR.DAT ; wdir_data = '/Users/holsclaw/MESSENGER/wget/bronte.jhuapl.edu/' ; filename_dat = wdir_data + 'cdr_rdr_products/mascs/data/ORB/MASCS20110422/UVVS/MUV/UMC_ORB_48_11112_111324_SCI.DAT' ; filename_hdr = wdir_data + 'cdr_rdr_products/mascs/data/ORB/MASCS20110422/UVVS/MUV/UMC_ORB_48_11112_111324_HDR.DAT' endif endif ; ; read in the data and the header ; print, 'reading filename_dat',filename_dat data = read_mascs_cdr_6(filename_dat) print, 'reading filename_hdr',filename_hdr hdr = read_mascs_cdr_6(filename_hdr) ; ; sometimes it appears that the surface observation starts over again ; for example, consider the following pair of files ; /ORB/MASCS20110511/UVVS/MUV/UMC_ORB_49_11131_210736_HDR.DAT ; /ORB/MASCS20110511/UVVS/MUV/UMC_ORB_49_11131_210736_SCI.DAT ; the first of two header elements indicates a 660-step scan and contains 660 values ; the second header also indicates a 660-step scan, but only contains 18 values ; the data file contains 678 values, and the wavelength scale starts over at index 661 ; therefore, the solution will be to restrict the reflectance to the data indicated by the first header. ; ; TODO: consider a different fault recovery: check if num_scan_values equals step_count. If num_scan_values < step_count, discard the data. data = data[0:hdr[0].num_scan_values-1] hdr = hdr[0] ddr_hdr_arr = hdr ;TODO: remove this structure definition, and instead use "uvvs_surf_ddr" ; defined in "init_mascs_ddr_templates" ; ; define header and data DDR structures ; uvvs_ddr_surf_sci = { $ ; ddr_surf_sci, $ BIN_NUMBER:UINT(0), $ TARGET_LATITUDE_SET:DBLARR(5), $ TARGET_LONGITUDE_SET:DBLARR(5), $ SLIT_ROTATION_ANGLE:double(0), $ ALONG_TRACK_FOOTPRINT_SIZE:double(0), $ ACROSS_TRACK_FOOTPRINT_SIZE:double(0), $ INCIDENCE_ANGLE:double(0), $ EMISSION_ANGLE:double(0), $ PHASE_ANGLE:double(0), $ SOLAR_DISTANCE:double(0), $ MIDBIN_TIME:double(0), $ BIN_UTC_TIME:bytarr(17), $ BIN_WAVELENGTH:float(0), $ IOF_BIN_DATA:float(0), $ PHOTOM_IOF_BIN_DATA:float(0), $ IOF_BIN_UNCERTAINTY_DATA:float(0), $ PHOTOM_IOF_BIN_UNCERTAINTY_DATA:float(0), $ FULLY_CORRECTED_COUNT_RATE:float(0), $ STEP_RADIANCE_W:float(0), $ PMT_TEMPERATURE:float(0), $ DATA_QUALITY_INDEX:bytarr(21), $ OBSERVATION_TYPE:bytarr(30), $ ; v3.0 SPARE_2:double(0) $ ; v3.0 Actually the only spare now. } ; ; create a composite solar spectrum consisting of SOLSTICE (115-310nm) and Thuillier (>310nm) ; ;get_solar_irradiance_composite_for_uvvs, wlsun, sun_irr, jd=jd restore,fsave_solar_spectrum,/ver ; ; adjust the solar irradiance at 1AU to the orbital distance of Mercury at the time of the observation ; sun_irr_merc = sun_irr / (data[0].SOLAR_DISTANCE/au)^2 ; ; set up wavelength vector and binning ; binsize = 2. ; full width of each bin in nm min_wl = 210. max_wl = 300. num_wl = (max_wl-min_wl)/binsize + 1 wl_bin_center = findgen(num_wl)*binsize + min_wl ; center wavelength of the bins wl_bin_start = wl_bin_center - binsize/2. wl_bin_stop = wl_bin_center + binsize/2. ; ; derive the sensitivity used to calibrate the data ; sens = data.step_radiance_w / data.fully_corrected_count_rate ; ; restore the original UVVS sensitivity ; This is only used to establish the min and max wavelengths of the valid sensitivity range ; restore, fsave_uvvs_sensitivity ; ;LASP plotting. Not needed for APL if n_params() eq 0 and keyword_set(user) then begin if user eq 'Holsclaw' then begin p1 = plot( fuv_wavelength, fuv_sensitivity ) p2 = plot( muv_wavelength, muv_sensitivity, /over ) ;p3 = plot( vis_wavelength, vis_sensitivity, /over ) endif endif ; ; identify wavelengths beyond the valid range and set the sensitivity to NaN ; ndx = where( data.step_wavelength lt min(muv_wavelength) or data.step_wavelength gt max(muv_wavelength), count ) if count gt 0 then sens[ndx] = !values.f_nan ; ; estimate a scattered light offset ; ndx_offset = where( data.step_wavelength lt wl_offset ) offset = mean( data[ndx_offset].fully_corrected_count_rate ) fully_corrected_count_rate = data.fully_corrected_count_rate - offset ; ; re-derive the radiance after subtracting the offset ; step_radiance_w = fully_corrected_count_rate * sens ; ; derive reflectance and bin all fields ; STEP_RADIANCE_W is in units of W/(m^2 steradian micron) ; ddr_sci_arr = replicate(uvvs_ddr_surf_sci,num_wl) solar_irradiance = fltarr(num_wl) inc_norm = 45. emis_norm = 45. phase_norm = 90. for i = 0, num_wl - 1 do begin ; ; select readout elements within each wavelength bin ; ndx = where( data.step_wavelength ge wl_bin_start[i] and data.step_wavelength lt wl_bin_stop[i], count ) ndx_sun = where( wlsun ge wl_bin_start[i] and wlsun lt wl_bin_stop[i], count_sun ) if count ge 1 then begin ddr_sci_arr[i].IOF_BIN_DATA = mean(STEP_RADIANCE_W[ndx]) / ( mean(sun_irr_merc[ndx_sun] ) / !pi) solar_irradiance[i] = mean(sun_irr_merc[ndx_sun]) ; ; derive the fractional error from photon shot noise ; frac_error = sqrt( total( float(data[ndx].RAW_STEP_DATA) ) ) / (float(hdr.int_time)/3000.) / total( fully_corrected_count_Rate[ndx] ) ; ddr_sci_arr[i].IOF_BIN_UNCERTAINTY_DATA = ddr_sci_arr[i].IOF_BIN_DATA * frac_error for j = 0, 4 do begin ddr_sci_arr[i].TARGET_LATITUDE_SET[j] = mean(data[ndx].TARGET_LATITUDE_SET[j]) ddr_sci_arr[i].TARGET_LONGITUDE_SET[j] = mean(data[ndx].TARGET_LONGITUDE_SET[j]) endfor ddr_sci_arr[i].SLIT_ROTATION_ANGLE = mean( data[ndx].SLIT_ROTATION_ANGLE ) ddr_sci_arr[i].ALONG_TRACK_FOOTPRINT_SIZE = mean( data[ndx].ALONG_TRACK_FOOTPRINT_SIZE ) ddr_sci_arr[i].ACROSS_TRACK_FOOTPRINT_SIZE = mean( data[ndx].ACROSS_TRACK_FOOTPRINT_SIZE ) ddr_sci_arr[i].INCIDENCE_ANGLE = mean( data[ndx].INCIDENCE_ANGLE ) ddr_sci_arr[i].EMISSION_ANGLE = mean( data[ndx].EMISSION_ANGLE ) ddr_sci_arr[i].PHASE_ANGLE = mean( data[ndx].PHASE_ANGLE ) ddr_sci_arr[i].SOLAR_DISTANCE = mean( data[ndx].SOLAR_DISTANCE ) ddr_sci_arr[i].MIDBIN_TIME = mean( data[ndx].MIDSTEP_TIME ) ddr_sci_arr[i].BIN_UTC_TIME = data[ndx[count/2]].STEP_UTC_TIME ; this is not quite correct - should derive UTC based on the MIDBIN_TIME calculated above ddr_sci_arr[i].PMT_TEMPERATURE = mean( data[ndx].PMT_TEMPERATURE ) ddr_sci_arr[i].STEP_RADIANCE_W = mean( STEP_RADIANCE_W[ndx] ) ddr_sci_arr[i].DATA_QUALITY_INDEX = data[ndx[count/2]].DATA_QUALITY_INDEX ; should we average some of the DQI values? ddr_sci_arr[i].OBSERVATION_TYPE = data[ ndx[count/2] ].OBSERVATION_TYPE ddr_sci_arr[i].FULLY_CORRECTED_COUNT_RATE = mean( FULLY_CORRECTED_COUNT_RATE[ndx] ) ; ; normalize the derived reflectance to a common geometry ; inc = ddr_sci_arr[i].INCIDENCE_ANGLE emis = ddr_sci_arr[i].EMISSION_ANGLE phase = ddr_sci_arr[i].PHASE_ANGLE mascs_normalize_photometry, inc, emis, phase, photom_fac, inc_norm=inc_norm, emis_norm=emis_norm, phase_norm=phase_norm ddr_sci_arr[i].PHOTOM_IOF_BIN_DATA = ddr_sci_arr[i].IOF_BIN_DATA * photom_fac ddr_sci_arr[i].PHOTOM_IOF_BIN_UNCERTAINTY_DATA = ddr_sci_arr[i].PHOTOM_IOF_BIN_DATA * frac_error endif endfor ddr_sci_arr.BIN_WAVELENGTH = wl_bin_center if n_params() eq 0 and keyword_set(user) then begin if user eq 'Holsclaw' then begin p1 = plot( wl_bin_center, ddr_sci_arr.FULLY_CORRECTED_COUNT_RATE, layout=[1,3,1] ) p2 = plot( wl_bin_center, ddr_sci_arr.step_radiance_w, layout=[1,3,2], /current ) p3 = plot( wl_bin_center, solar_irradiance * 3.e-3, /over, color='red' ) p4 = plot( wl_bin_center, ddr_sci_arr.photom_iof_bin_data, layout=[1,3,3], /current ) stop endif endif ;LASP debugging code only. Not needed for APL ;if n_params() eq 0 then begin ; ;@idl_startup ; ; ;fplot=wdir_plots+'uvvs_surface_reflectance.eps' ; ;printeps,fplot,/start ; !p.multi=[0,1,3] ; window,0,xs=1200,ys=1000 ; xtitle = 'wavelength (nm)' ; yr = [100,max(data.FULLY_CORRECTED_COUNT_RATE)] ; xr = [ min(data.step_wavelength), max(data.step_wavelength) ] ; plot, data.step_wavelength, data.FULLY_CORRECTED_COUNT_RATE, yr=yr, /ylog, xtitle=xtitle, title='FULLY_CORRECTED_COUNT_RATE', ytitle='counts/second', xr=xr ; oplot, wlsun, sun_irr, linestyle=1 ; oplot, wlsun, sun_irr*10., linestyle=1 ; oplot, wlsun, sun_irr*100., linestyle=1 ; ;marker, y = offset, linestyle=2 ; ;marker, x = wl_offset, by=yr, linestyle=2 ; txt = ['solar irradiance (scaled)'] ; legend,txt,line=1,box=0,charsize=1.5 ; plot, data.step_wavelength, data.step_radiance_w, yr=[0.01,100],/ylog, xtitle=xtitle, title='step_radiance_w', ytitle='W/(m^2 micron)', xr=xr ; oplot, data.step_wavelength, step_radiance_w, linestyle=2 ; txt = 'with offset subtraction' ; legend,txt,line=2,box=0,charsize=1.5 ; plot, wl_bin_center, ddr_sci_arr.IOF_BIN_DATA, yr=[0,0.02], xtitle=xtitle, title='reflectance', xr=xr ; oploterror, wl_bin_center, ddr_sci_arr.IOF_BIN_DATA, ddr_sci_arr.IOF_BIN_UNCERTAINTY_DATA ; ;oplot, wl_bin_center, refl, color=colors.red ; txt = 'with offset subtraction' ; ;legend,txt,line=0,box=0,color=colors.red,charsize=1.5 ; !p.multi=0 ; ;printeps,fplot,/stop ; ; wdir_save = '/users/holsclaw/messenger/' ; fsave = wdir_save + 'uvvs_surface_ddr.sav' ; save,filename=fsave,ddr_sci_arr ; ; stop ;endif end ;----------------------------------------------------------------------------- ; * uvvsddr_surf_hdr_2_ascii - writes the UVVS Surface Reflectance DDR ; header structure into a csv file. ;----------------------------------------------------------------------------- pro uvvsddr_surf_hdr_2_ascii,hdr_arr,sci_arr,ddrascii_fname ;writes the UVVS Surface Reflectance DDR header structure into a csv file ;hdr_arr is the UVVS Surface Reflectance DDR header structure ;sci_arr is the UVVS Surface Reflectance DDR science structure ;ddrascii_fname is the output csv file (full path) ;created by Calogero Mauceri 6/28/2013 ;format of the output surfformat = '(i10,",",14(i5,","),f5.1,",",2(f20.6,:,","))' ;need to extract specific items from the structure sc_time = hdr_arr.sc_time pkt_subseconds = hdr_arr.packet_subseconds start_pos = hdr_arr.start_pos step_count = hdr_arr.step_count int_time = hdr_arr.int_time step_time = hdr_arr.step_time phase_offset = hdr_arr.phase_offset scan_cycles = hdr_arr.scan_cycles zigzag = hdr_arr.zigzag compression = hdr_arr.compression slit_mask_pos = hdr_arr.slit_mask_pos gd_settle_ctr = hdr_arr.gd_settle_ctr num_scan_values = hdr_arr.num_scan_values step_size = hdr_arr.step_size coadd = hdr_arr.coadd ; do not use the calibration version number from the CDR. That is the CDR software version. Use this hardcoded number ;remember to increment it whenever the DDR software is updated. ;cal_sw_ver = hdr_arr.calibration_software_version cal_sw_ver = 1.0 ;determine size of a given variable in the uvvs header. We assume that all other uvvs header variables have ;same number of elements num_records = n_elements(sc_time) print, 'total elements:',num_records ;use the sci array to get the start and stop met ;those information will be stored in the CSV file because needed by the PIPE script converting the ASCII file to the binary version n_sci_records = n_elements(sci_arr) midbin_time = sci_arr.midbin_time start_met = midbin_time(0) stop_met = midbin_time(n_sci_records-1) ;open the file for writing openw,wunit,ddrascii_fname,/get_lun print, 'writing DDR Surface HDR values to ',ddrascii_fname for i = 0, num_records - 1 do begin sc_time_i = sc_time(i) pkt_subseconds_i = pkt_subseconds(i) start_pos_i = start_pos(i) step_count_i = step_count(i) int_time_i = int_time(i) step_time_i = step_time(i) phase_offset_i = phase_offset(i) scan_cycles_i = scan_cycles(i) zigzag_i = zigzag(i) compression_i = compression(i) slit_mask_pos_i = slit_mask_pos(i) gd_settle_ctr_i = gd_settle_ctr(i) num_scan_values_i = num_scan_values(i) step_size_i = step_size(i) coadd_i = coadd(i) cal_sw_ver_i = cal_sw_ver printf,wunit, sc_time_i, pkt_subseconds_i, start_pos_i, step_count_i, int_time_i, $ step_time_i, phase_offset_i, scan_cycles_i, zigzag_i, compression_i, slit_mask_pos_i, $ gd_settle_ctr_i, num_scan_values_i, step_size_i, coadd_i, cal_sw_ver_i, start_met, stop_met, $ format = surfformat endfor close,wunit free_lun,wunit end ;----------------------------------------------------------------------------- ; * uvvsddr_surf_sci_2_ascii - writes the UVVS Surface Reflectance DDR ; science structure into a csv file ;----------------------------------------------------------------------------- pro uvvsddr_surf_sci_2_ascii,arr,ddrascii_fname, detector=detector ;writes the UVVS Surface Reflectance DDR science structure into a csv file ; ; INPUTS: ; arr: UVVS Surface Reflectance DDR science structure ; ; KEYWORD PARAMETERS: ; detector: (optional) detector name, only 'MUV' or 'FUV' are currently supported. ; If uspecified it is assumed 'MUV' detector ; ; OUTPUTS: ; ddrascii_fname: output csv file (full path) ; ; MODIFICATION HISTORY: ; Created by: Ray Espiritu 6/25/2013 ; Modified by: Calogero Mauceri, Aug 10, 2016 to allow to specify the detector name if keyword_set(detector) eq 0 then begin detector = 'MUV' endif print,"detector " + detector ;format of the output if detector eq 'FUV' then begin surfformat = '(i8,",",5(f20.6,:,","),5(f20.6,:,","),7(f15.6,:,","),f20.6,",",a17,",",8(f20.10,:,","),a21,",",a30,",",f20.10,",",3(f15.6,:,","))' endif else begin ; MUV surfformat = '(i8,",",5(f20.6,:,","),5(f20.6,:,","),7(f15.6,:,","),f20.6,",",a17,",",8(f20.10,:,","),a21,",",a30,",",3(f15.6,:,","))' endelse spare1 = 0.0 spare2 = 0.0 spare3 = 0.0 ;need to extract specific items from the structure bin_number = arr.bin_number tar_lat = arr.target_latitude_set tar_lon = arr.target_longitude_set slit_rot = arr.slit_rotation_angle along_track = arr.along_track_footprint_size across_track = arr.across_track_footprint_size inc = arr.incidence_angle emi = arr.emission_angle phase = arr.phase_angle solar_dist = arr.solar_distance midbin_met = arr.midbin_time utc_time = arr.bin_utc_time wavel = arr.bin_wavelength iof_bin = arr.iof_bin_data photom_iof_bin = arr.photom_iof_bin_data if detector eq 'MUV' then begin iof_noise = arr.iof_bin_uncertainty_data photom_iof_noise = arr.photom_iof_bin_uncertainty_data step_w = arr.step_radiance_w endif else begin ; FUV iof_noise = arr.iof_bin_noise_data photom_iof_noise = arr.photom_iof_bin_noise_data step_w = arr.bin_radiance_w solar_ir_w = arr.bin_solar_irradiance_w endelse full_ccr = arr.fully_corrected_count_rate pmt_temp = arr.pmt_temperature dqi = arr.data_quality_index obs_type = arr.observation_type num_records = n_elements(bin_number) print, 'writing to ',ddrascii_fname openw,wunit,ddrascii_fname,/get_lun ;need to print a header line because PIPE expects it header = 'UVVS DDR Surf Reflect SCI csv file header' printf, wunit, header for i = 0, num_records - 1 do begin bin_num_i = bin_number[i] tar_lat_i = tar_lat[*,i] tar_lon_i = tar_lon[*,i] slit_rot_i = slit_rot[i] along_track_i = along_track[i] across_track_i = across_track[i] inc_i = inc[i] emi_i = emi[i] phase_i = phase[i] solar_dist_i = solar_dist[i] midbin_met_i = midbin_met[i] utc_time_i = utc_time[*,i] utc_string = string([utc_time_i]) wavel_i = wavel[i] iof_bin_i = iof_bin[i] photom_iof_bin_i = photom_iof_bin[i] iof_noise_i = iof_noise[i] photom_iof_noise_i = photom_iof_noise[i] full_ccr_i = full_ccr[i] step_w_i = step_w[i] pmt_temp_i = pmt_temp[i] dqi_i = dqi[*,i] dqi_string = string([dqi_i]) obs_i = obs_type[*,i] obs_string = string([obs_i]) if detector eq 'FUV' then begin solar_ir_w_i = solar_ir_w[i] ; save additional SOLAR_IRRADIANCE_W field printf,wunit, bin_num_i, tar_lat_i, tar_lon_i, slit_rot_i, along_track_i, across_track_i,$ inc_i, emi_i, phase_i, solar_dist_i, midbin_met_i, utc_string, wavel_i, iof_bin_i, $ photom_iof_bin_i, iof_noise_i, photom_iof_noise_i, full_ccr_i, step_w_i, pmt_temp_i, $ dqi_string, obs_string, solar_ir_w_i, spare1, spare2, spare3, $ format = surfformat endif else begin printf,wunit, bin_num_i, tar_lat_i, tar_lon_i, slit_rot_i, along_track_i, across_track_i,$ inc_i, emi_i, phase_i, solar_dist_i, midbin_met_i, utc_string, wavel_i, iof_bin_i, $ photom_iof_bin_i, iof_noise_i, photom_iof_noise_i, full_ccr_i, step_w_i, pmt_temp_i, $ dqi_string, obs_string, spare1, spare2, spare3, $ format = surfformat endelse endfor close,wunit free_lun,wunit return ;exit end ;----------------------------------------------------------------------------- ; * uvvs_derive_fuv_reflectance - derives surface reflectance from surface ; observations by the UVVS-FUV channel. ;----------------------------------------------------------------------------- ;+ ; NAME: ; UVVS_DERIVE_FUV_REFLECTANCE ; ; PURPOSE: ; This procedure will derive surface reflectance from observations by the UVVS-FUV channel. ; ; CALLING SEQUENCE: ; UVVS_DERIVE_FUV_REFLECTANCE, Filename_dat, Filename_hdr, ddr_sci_arr, ddr_hdr_arr ; ; INPUTS: ; Filename_dat: Filename of a UVVS FUV CDR science data file. ; Filename_hdr: Filename of a UVVS FUV CDR science header file. ; ; KEYWORD PARAMETERS: ; USER: (optional) Only 'Holsclaw' is currently allowed, and if uspecified it is assumed this routine runs at ACT. ; This allows the definition of unique local file paths to the support data files. ; ; OUTPUTS: ; ddr_sci_arr: UVVS Science DDR as an array of structures containing derived reflectance and anciallary data. ; ddr_hdr_arr: UVVS Header DDR as an array of structures containing the data from the UVVS CDR header file ; ; RESTRICTIONS: ; required subroutines: ; mascs_normalize_photometry.pro: Routine to normalize photometric variation. ; read_mascs_cdr_6.pro: Read in CDR data file. ; define_virs_common_data.pro: Defines common blocks for many MASCS routines, including this one. ; ; required files: ; uvvs_fuv_solar_irradiance_composite.txt: Solar irradiance time series, loaded through a common block ; ; EXAMPLE: ; EXAMPLE1 ; ; filename_dat = '/ORB/MASCS20111129/UVVS/FUV/UFC_ORB_63_11333_234230_SCI.DAT' ; filename_hdr = '/ORB/MASCS20111129/UVVS/FUV/UFC_ORB_63_11333_234230_HDR.DAT' ; UVVS_DERIVE_FUV_REFLECTANCE, filename_dat, filename_hdr, ddr_sci_arr, ddr_hdr_arr ; ; MODIFICATION HISTORY: ; Written by: Greg Holsclaw, Jul 31, 2016 ;- pro UVVS_DERIVE_FUV_REFLECTANCE, filename_dat, filename_hdr, ddr_sci_arr, ddr_hdr_arr, user=user ;1 Astronomical Unit = 149 598 000 kilometers au = 149598000.d if n_params() eq 0 then begin user = 'Holsclaw' endif ; ; offset wavelength - all signal below this wavelength is considered scattered light, and subtracted ; wl_offset = 120. ; ; read in the data and the header ; print, 'reading filename_dat',filename_dat data = read_mascs_cdr_6(filename_dat) print, 'reading filename_hdr',filename_hdr hdr = read_mascs_cdr_6(filename_hdr) ddr_hdr_arr = hdr ; ; retain only the hdr and data where the actual returned number of values (num_scan_values) equals the commanded number of values (step_count) ; ;num_elem = 0 ;ndx_temp = intarr(n_elements(hdr)) ;ndx_match_data = [] ;for i = 0, n_elements(hdr) - 1 do begin ; ndx_temp[i] = hdr[i].step_count eq hdr[i].num_scan_values ; if ndx_temp[i] then begin ; if i eq 0 then begin ; ndx_match_data = indgen(hdr[i].num_scan_values) ; endif else begin ; ndx_match_data = [ ndx_match_data, indgen(hdr[i].num_scan_values)+num_elem ] ; endelse ; endif ; num_elem = num_elem + hdr[i].num_scan_values ;endfor ;ndx_match_hdr = where( ndx_temp ) ;hdr = hdr[ndx_match_hdr] ;data = data[ndx_match_data] ;ddr_hdr_arr = hdr ; ; The following common variables are defined in "define_virs_common_data" ; Read in the solar irradiance time series. Irradiance units are W/m^2 ; common UVVS_FUV_SURFACE_DDR, jd_sun, E_sun_1215_W, E_sun_1305_W, d_sun_merc ; ; change units from [ph/s/cm^2/nm] to ... ; 1W = 1J/s ;h_planck = 6.62606957d-34 ; (Joule seconds) or (m^2 kg / s) ;c_light = 299792458.d ; meter/second ;E_photon_1215 = h_planck * c_light / (121.5*1.e-9) ; Joule per photon ;E_photon_1305 = h_planck * c_light / (130.5*1.e-9) ; Joule per photon ; ; 1 [ kilorayleigh ] = 1.e9 / 4. / !pi [ph/sec/cm^2/ster] ;kr = 1.e9 / 4. / !pi ; ; Find the time at the midpoint of the observation, and convert to Julian date ; step_utc_time_mid = string( data[ n_elements(data) / 2 ].step_utc_time ) ;daymonth, year, in_days, month, dayofmth, ndays, mthnum, year=yrs, days=day year = fix( '20'+strmid(step_utc_time_mid,0,2) ) doy = fix( strmid(step_utc_time_mid,2,3) ) daymonth, year, doy, month, dayofmth, ndays, mthnum hr = strmid(step_utc_time_mid,6,2) mn = strmid(step_utc_time_mid,9,2) ;temp = julday( mthnum[0], dayofmth[0], year, hr, mn ) jd_obs_mid = julday( mthnum[0], dayofmth[0], year, hr, mn ) ; ; Find the corresponding solar irradiance at the time of the observation ; ndx_sun = where( abs(jd_sun-jd_obs_mid) eq min( abs(jd_sun-jd_obs_mid) ), count_sun ) ; ; Confirm that the solar distance in the data product is the same as is provided in the solar irradiance time series file ; solar_distance_diff = abs(data[0].SOLAR_DISTANCE/au - d_sun_merc[ndx_sun]) / d_sun_merc[ndx_sun] if solar_distance_diff gt 0.01 then begin print, 'The solar distance contained in the data file differs by at least 1% from that contained in the print, ' solar irradiance time series file.' stop endif ; ; Solar irradiance at each wavelength ; E_sun_merc_W = [ E_sun_1215_W[ndx_sun], E_sun_1305_W[ndx_sun] ] ; ; set up wavelength vector and binning ; ;if keyword_set(binsize) eq 0 then $ binsize = 1. ; full width of bin in nm wl_bin_center = [ 121.5, 130.5 ] wl_bin_start = wl_bin_center - binsize/2. wl_bin_stop = wl_bin_center + binsize/2. num_wl = n_elements(wl_bin_center) ; ; derive the sensitivity used to calibrate the data ; radiance_kr in units of kiloRayleighs/nanometer ; radiance_W in units of W/(m^2 steradian micron) sens_kr = data.step_radiance_kr / data.fully_corrected_count_rate sens_W = data.step_radiance_W / data.fully_corrected_count_rate ;p = plot( data.step_Wavelength, sens_kr ) ; ; Subtract a scattered light background ; It was found this is needed to replicate the shape of the solar spectral irradiance. ; ndx_offset = where( data.step_wavelength lt wl_offset ) background = mean( data[ndx_offset].fully_corrected_count_rate ) fully_corrected_count_rate_SubBack = data.fully_corrected_count_rate - background ;s1 = 0 ;s2 = 51 ;ndx_short = where( uvvs_sci_cdr[s1:s2].step_Wavelength lt 120. ) ;background = mean(uvvs_sci_cdr[ndx_short].fully_corrected_count_rate) ; ; re-derive the measured radiance after subtracting the offset ; step_radiance_kr_SubBack = fully_corrected_count_rate_SubBack * sens_kR step_radiance_W_SubBack = fully_corrected_count_rate_SubBack * sens_W ; ; Replace data from CDR with that revised above ; data.fully_corrected_count_rate = fully_corrected_count_rate_SubBack data.step_radiance_kr = step_radiance_kr_SubBack data.step_radiance_W = step_radiance_W_SubBack ;data.SCATTERED_LIGHT_RATE = background ; ; create array of structures to hold data ; init_mascs_ddr_templates ddr_sci_arr = replicate( {uvvs_surf_fuv_ddr},num_wl) ; ; derive reflectance and bin all fields ; STEP_RADIANCE_W is in units of W/(m^2 steradian micron) ; STEP_RADIANCE_kR is in units of kR/nm ; inc_norm = 45. emis_norm = 45. phase_norm = 90. for i = 0, num_wl - 1 do begin ; ; select readout elements within each wavelength bin ; ndx = where( (data.step_wavelength ge wl_bin_start[i]) and (data.step_wavelength lt wl_bin_stop[i]), count_wl ) ; ; The description for the BIN_NUMBER field is: "BIN of steps in the observation." ; I assume this means the number of data values from the CDR that are used to produce the binned value. ; ddr_sci_arr[i].bin_number = count_wl ; if count_wl ge 1 then begin ; ; Stepsize in wavelength units ; step_micron = mean( deriv( data[ndx].step_wavelength ) ) * 1.e-9 * 1.e6 ; average grating stepsize in units of microns ; ; Derive reflectance, or I/F ; ddr_sci_arr[i].IOF_BIN_DATA = total(data[ndx].STEP_RADIANCE_W) * step_micron / ( E_sun_merc_W[i] / !pi) ; ; Save the solar irradiance used ; ddr_sci_arr[i].BIN_SOLAR_IRRADIANCE_W = E_sun_merc_W[i] ; ; derive the fractional error from photon shot noise ; frac_error = sqrt( total( float(data[ndx].RAW_STEP_DATA) ) ) / (float(hdr[0].int_time)/3000.) / total( data[ndx].fully_corrected_count_rate ) ; ddr_sci_arr[i].IOF_BIN_NOISE_DATA = ddr_sci_arr[i].IOF_BIN_DATA * frac_error for j = 0, 4 do begin ddr_sci_arr[i].TARGET_LATITUDE_SET[j] = mean(data[ndx].TARGET_LATITUDE_SET[j]) ddr_sci_arr[i].TARGET_LONGITUDE_SET[j] = mean(data[ndx].TARGET_LONGITUDE_SET[j]) endfor ddr_sci_arr[i].SLIT_ROTATION_ANGLE = mean( data[ndx].SLIT_ROTATION_ANGLE ) ddr_sci_arr[i].ALONG_TRACK_FOOTPRINT_SIZE = mean( data[ndx].ALONG_TRACK_FOOTPRINT_SIZE ) ddr_sci_arr[i].ACROSS_TRACK_FOOTPRINT_SIZE = mean( data[ndx].ACROSS_TRACK_FOOTPRINT_SIZE ) ddr_sci_arr[i].INCIDENCE_ANGLE = mean( data[ndx].INCIDENCE_ANGLE ) ddr_sci_arr[i].EMISSION_ANGLE = mean( data[ndx].EMISSION_ANGLE ) ddr_sci_arr[i].PHASE_ANGLE = mean( data[ndx].PHASE_ANGLE ) ddr_sci_arr[i].SOLAR_DISTANCE = mean( data[ndx].SOLAR_DISTANCE ) ddr_sci_arr[i].MIDBIN_TIME = mean( data[ndx].MIDSTEP_TIME ) ddr_sci_arr[i].BIN_UTC_TIME = data[ndx[count_wl/2]].STEP_UTC_TIME ; this is not quite correct - should derive UTC based on the MIDBIN_TIME calculated above ddr_sci_arr[i].PMT_TEMPERATURE = mean( data[ndx].PMT_TEMPERATURE ) ddr_sci_arr[i].BIN_RADIANCE_W = total( data[ndx].STEP_RADIANCE_W ) * step_micron ddr_sci_arr[i].DATA_QUALITY_INDEX = data[ndx[count_wl/2]].DATA_QUALITY_INDEX ; should we average some of the DQI values? ddr_sci_arr[i].OBSERVATION_TYPE = data[ ndx[count_wl/2] ].OBSERVATION_TYPE ddr_sci_arr[i].FULLY_CORRECTED_COUNT_RATE = mean( data[ndx].fully_corrected_count_rate ) ; ; normalize the derived reflectance to a common geometry ; inc = ddr_sci_arr[i].INCIDENCE_ANGLE emis = ddr_sci_arr[i].EMISSION_ANGLE phase = ddr_sci_arr[i].PHASE_ANGLE mascs_normalize_photometry, inc, emis, phase, photom_fac, inc_norm=inc_norm, emis_norm=emis_norm, phase_norm=phase_norm ddr_sci_arr[i].PHOTOM_IOF_BIN_DATA = ddr_sci_arr[i].IOF_BIN_DATA * photom_fac ddr_sci_arr[i].PHOTOM_IOF_BIN_NOISE_DATA = ddr_sci_arr[i].PHOTOM_IOF_BIN_DATA * frac_error endif else begin ddr_sci_arr[i].iof_bin_data = !values.f_nan ddr_sci_arr[i].IOF_BIN_NOISE_DATA = !values.f_nan ddr_sci_arr[i].TARGET_LATITUDE_SET = !values.f_nan ddr_sci_arr[i].TARGET_LONGITUDE_SET = !values.f_nan ddr_sci_arr[i].SLIT_ROTATION_ANGLE = !values.f_nan ddr_sci_arr[i].ALONG_TRACK_FOOTPRINT_SIZE = !values.f_nan ddr_sci_arr[i].ACROSS_TRACK_FOOTPRINT_SIZE = !values.f_nan ddr_sci_arr[i].INCIDENCE_ANGLE = !values.f_nan ddr_sci_arr[i].EMISSION_ANGLE = !values.f_nan ddr_sci_arr[i].PHASE_ANGLE = !values.f_nan ddr_sci_arr[i].SOLAR_DISTANCE = !values.f_nan ddr_sci_arr[i].MIDBIN_TIME = !values.f_nan ddr_sci_arr[i].BIN_UTC_TIME = !values.f_nan ddr_sci_arr[i].PMT_TEMPERATURE = !values.f_nan ddr_sci_arr[i].BIN_RADIANCE_W = !values.f_nan ddr_sci_arr[i].DATA_QUALITY_INDEX = !values.f_nan ddr_sci_arr[i].OBSERVATION_TYPE = !values.f_nan ddr_sci_arr[i].FULLY_CORRECTED_COUNT_RATE = !values.f_nan endelse endfor ddr_sci_arr.BIN_WAVELENGTH = wl_bin_center if keyword_set(user) then begin if user eq 'Holsclaw' then begin p1 = plot( data.step_wavelength, data.fully_corrected_count_rate, symbol='x', /ylog, xtitle='wavelength (nm)', ytitle='counts' ) ;w = 0.5 ndx0 = where( data.step_wavelength ge wl_bin_start[0] and data.step_wavelength lt wl_bin_stop[0] ) p2 = plot( data[ndx0].step_wavelength, data[ndx0].fully_corrected_count_rate, /over, symbol='x', color='red' ) ndx1 = where( data.step_wavelength ge wl_bin_start[1] and data.step_wavelength lt wl_bin_stop[1] ) p2 = plot( data[ndx1].step_wavelength, data[ndx1].fully_corrected_count_rate, /over, symbol='x', color='red' ) markerp,p1,x=wl_bin_start[0], linestyle=2 markerp,p1,x=wl_bin_stop[0], linestyle=2 markerp,p1,x=wl_bin_start[1], linestyle=2 markerp,p1,x=wl_bin_stop[1], linestyle=2 p1.save,'/users/holsclaw/desktop/idl_temp/'+file_basename(filename_dat,'.DAT')+'_spectrum.png' margin = 0.15 p1 = plot( wl_bin_center, ddr_sci_arr.FULLY_CORRECTED_COUNT_RATE, layout=[1,3,1], margin=margin ) p2 = plot( wl_bin_center, ddr_sci_arr.bin_radiance_W, layout=[1,3,2], /current, margin=margin ) ;p3 = plot( wl_bin_center, ddr_sci_arr.SOLAR_IRRADIANCE_PH * 3.e-3, /over, color='red', margin=margin ) p4 = plot( wl_bin_center, ddr_sci_arr.photom_iof_bin_data, layout=[1,3,3], /current, margin=margin ) print,ddr_sci_arr.IOF_BIN_DATA stop endif endif end ;----------------------------------------------------------------------------- ; * define_virs_common_data - define paths and common blocks ;----------------------------------------------------------------------------- ; ; TODO: convert all .sav files to ASCII ; pro define_virs_common_data, user=user ; define filenames and paths for a specified user ; set up common blocks so that frequently used data can be accessed by subroutines ; ; Inputs: ; user (keyword) = 'ACT' or 'ACT_win' or 'Holsclaw' ; ; 2015-07-31 CM: ; added ACT_win user for supporting execution on Windows machine COMMON VIRS_FILENAMES, polyfit_error_file_path ; ; set up required file paths ; case user of 'ACT': begin ;hardcode the path to the virs sensitivity file for now coreDir='/project/messenger/SOC/pipe/data/cdr_rdr_execs/mascs_idl/updated_virs/' filename_lab_sen_file = coreDir + 'MASCS_VIRS_sensitivity.sav' filename_white_screen_reflectance = coreDir + 'VIRS_white_screen_reflectance.sav' filename_vis_sen_file_correction = coreDir + 'VIRS_VIS_sensitivity_short_wavelength_adjustment2.sav' filename_vis_wavelength_2011_09_01_before = coreDir + 'vis_wavelength_2011_09_01_before.sav' filename_vis_wavelength_2011_09_01_after = coreDir + 'vis_wavelength_2011_09_01_after.sav' filename_BinnedSatTemps = coreDir + 'ir_binned_sat.csv' filename_vis_noise_poly = coreDir + 'vis_noise_poly.sav' filename_nir_noise_poly = coreDir + 'ir_noise_poly.sav' polyfit_error_file_path = '/project/messenger/SOC/pipe/data/virs_cdr/' filename_TempCorFile_VIS = coreDir + 'VIS_Temp_Coeffs_base21.txt' filename_TempCorFile_NIR = coreDir + 'NIR_Temp_Coeffs_base22.txt' filename_solar_irradiance = 'ThuillierReference.txt' filename_uvvs_fuv_solar_irradiance = coreDir + 'uvvs_fuv_solar_irradiance_composite.txt' end 'ACT_win': begin ;hardcode the path to the virs sensitivity file for now coreDir='C:/ACT/Default_Wipe/IDL/UVVS_FUV_DDR/MASCS/' filename_lab_sen_file = coreDir + 'VIRS/CDR/MASCS_VIRS_sensitivity.sav' filename_white_screen_reflectance = coreDir + 'VIRS/CDR/VIRS_white_screen_reflectance.sav' filename_vis_sen_file_correction = coreDir + 'VIRS/CDR/VIRS_VIS_sensitivity_short_wavelength_adjustment2.sav' filename_vis_wavelength_2011_09_01_before = coreDir + 'VIRS/CDR/vis_wavelength_2011_09_01_before.sav' filename_vis_wavelength_2011_09_01_after = coreDir + 'VIRS/CDR/vis_wavelength_2011_09_01_after.sav' filename_BinnedSatTemps = coreDir + 'VIRS/CDR/ir_binned_sat.csv' filename_vis_noise_poly = coreDir + 'VIRS/CDR/vis_noise_poly.sav' filename_nir_noise_poly = coreDir + 'VIRS/CDR/ir_noise_poly.sav' polyfit_error_file_path = 'E:/pipe_virs/data/virs_cdr/' filename_TempCorFile_VIS = coreDir + 'VIRS/CDR/VIS_Temp_Coeffs_base21.txt' filename_TempCorFile_NIR = coreDir + 'VIRS/CDR/NIR_Temp_Coeffs_base22.txt' filename_solar_irradiance = coreDir + 'VIRS/CDR/ThuillierReference.txt' filename_uvvs_fuv_solar_irradiance = coreDir + 'UVVS/SURFACE_DDR/data/uvvs_fuv_solar_irradiance_composite.txt' end 'Klima': begin filename_BinnedSatTemps = '/Users/klimarl1/Research/IDL_Programs/latest_set/ir_binned_sat.csv' filename_vis_noise_poly = '/Users/klimarl1/Research/IDL_Programs/latest_set/Vis_Noise_poly.sav' filename_nir_noise_poly = '/Users/klimarl1/Research/IDL_Programs/latest_set/ir_noise_poly.sav' polyfit_error_file_path = '/users/klimarl1/Desktop/' TempCorDir='/Users/klimarl1/Research/IDL_Programs/latest_set/' end 'Holsclaw': begin ;temp = get_login_info() ;if strmatch(temp.user_name,'holsclaw') then begin coreDir = '/Users/holsclaw/MESSENGER/sdc/MASCS/' filename_lab_sen_file = coreDir + 'VIRS/CDR/MASCS_VIRS_sensitivity.sav' filename_white_screen_reflectance = coreDir + 'VIRS/CDR/VIRS_white_screen_reflectance.sav' filename_vis_sen_file_correction = coreDir + 'VIRS/CDR/VIRS_VIS_sensitivity_short_wavelength_adjustment2.sav' filename_vis_wavelength_2011_09_01_before = coreDir + 'VIRS/CDR/vis_wavelength_2011_09_01_before.sav' filename_vis_wavelength_2011_09_01_after = coreDir + 'VIRS/CDR/vis_wavelength_2011_09_01_after.sav' filename_BinnedSatTemps = coreDir + 'VIRS/CDR/ir_binned_sat.csv' filename_vis_noise_poly = coreDir + 'VIRS/CDR/vis_noise_poly.sav' filename_nir_noise_poly = coreDir + 'VIRS/CDR/ir_noise_poly.sav' polyfit_error_file_path = coreDir + 'VIRS/CDR/' filename_TempCorFile_VIS = coreDir + 'VIRS/CDR/VIS_Temp_Coeffs_base21.txt' filename_TempCorFile_NIR = coreDir + 'VIRS/CDR/NIR_Temp_Coeffs_base22.txt' filename_solar_irradiance = coreDir + 'VIRS/CDR/ThuillierReference.txt' filename_uvvs_fuv_solar_irradiance = coreDir + 'UVVS/SURFACE_DDR/data/uvvs_fuv_solar_irradiance_composite.txt' ;'/Users/holsclaw/MESSENGER/sdc/MASCS/UVVS/SURFACE_DDR/data/uvvs_fuv_solar_irradiance_composite.txt' ; lab_sen_file = '/Users/holsclaw/MESSENGER/analysis/ACT_IDL_CODE/virs_cdr/MASCS_VIRS_sensitivity.sav' ; vis_sen_file_correction = '/Users/holsclaw/MESSENGER/analysis/ACT_IDL_CODE/virs_cdr/VIRS_VIS_sensitivity_short_wavelength_adjustment2.sav' ; filename_vis_wavelength_2011_09_01_before = '/Users/holsclaw/MESSENGER/VIRS_data_save_files/wavelength_scale/vis_wavelength_2011_09_01_before.sav' ; filename_vis_wavelength_2011_09_01_after = '/Users/holsclaw/MESSENGER/VIRS_data_save_files/wavelength_scale/vis_wavelength_2011_09_01_after.sav' ; BinnedSatTemps='/Users/holsclaw/MESSENGER/analysis/ACT_IDL_CODE/virs_cdr/ir_binned_sat.csv' ; filename_vis_noise_poly = '/Users/holsclaw/MESSENGER/analysis/ACT_IDL_CODE/virs_cdr/vis_noise_poly.sav' ; filename_nir_noise_poly = '/Users/holsclaw/MESSENGER/analysis/ACT_IDL_CODE/virs_cdr/ir_noise_poly.sav' ; polyfit_error_file_path = '/users/holsclaw/desktop/IDL_temp/' ; filename_TempCorFile_VIS = '/Users/holsclaw/MESSENGER/analysis/ACT_IDL_CODE/virs_cdr/VIS_Temp_Coeffs_base21.txt' ; filename_TempCorFile_NIR = '/Users/holsclaw/MESSENGER/analysis/ACT_IDL_CODE/virs_cdr/NIR_Temp_Coeffs_base22.txt' ; filename_solar_irradiance = '/Users/holsclaw/data_resources/Sun/Thuillier/ThuillierReference.txt' COMMON HK_VIRS, hk_file_list, hk_file_list_basename, mission_phase_hk_path_fixed ;mission_phase_hk_path_fixed = '/Users/holsclaw/MESSENGER/wget/bronte.jhuapl.edu/edr_products/mascs/housekeeping/' mission_phase_hk_path_fixed = '/Volumes/LaCie/MESSENGER/edr_products/mascs/housekeeping/' hk_file_list = file_search( mission_phase_hk_path_fixed, '*.DAT' ) hk_file_list_basename = file_Basename( hk_file_list ) end else: begin print, 'unknown user' stop end endcase COMMON NOISE_POLYNOMIAL, vis_noise_poly, nir_noise_poly restore,filename_vis_noise_poly restore,filename_nir_noise_poly nir_noise_poly = ir_noise_poly COMMON VIRS_WAVELENGTH, wlvis_before, wlvis_after, wlnir_before_and_after restore,filename_vis_wavelength_2011_09_01_before wlvis_before = wlvis restore,filename_vis_wavelength_2011_09_01_after wlvis_after = wlvis COMMON VIRS_SENSITIVITY, wlvis_lab, wlnir_lab, visr, nirr, visr_sdev, nirr_sdev, wls, rs, Tcoeffs_VIS, Tcoeffs_NIR, sens_vis_corr ; wlvis, wlnir, visr, nirr, visr_sdev, nirr_sdev restore,filename_lab_sen_file wlvis_lab = wlvis wlnir_lab = wlnir wlnir_before_and_after = wlnir ; wls, rs restore,filename_white_screen_reflectance ; ; Load in Temperature coefficients from "Gregs_sensitivity_with_temperature" expanded work ; Tcoeffs_VIS=fltarr(512,3) openr,wunit,filename_TempCorFile_VIS,/get_lun readu,wunit,Tcoeffs_VIS close,wunit free_lun,wunit ; Tcoeffs_NIR=fltarr(256,3) openr,wunit,filename_TempCorFile_NIR,/get_lun readu,wunit,Tcoeffs_NIR close,wunit free_lun,wunit ; restore,filename_vis_sen_file_correction ; sens_vis_corr COMMON VIRS_DDR, wlt, sunt d = (read_ascii(filename_solar_irradiance,data_start=1)).(0) wlt = reform(d[1,*]) sunt = reform(d[2,*]) * 1000. ; W/m^2/micron COMMON VIRS_SAT_TEMPS, virs_sat_temps virs_sat_temps = intarr(2,128) openr,wunit,filename_BinnedSatTemps,/get_lun readf,wunit,virs_sat_temps close,wunit free_lun,wunit virs_sat_temps=transpose(virs_sat_temps) COMMON UVVS_FUV_SURFACE_DDR, jd_sun, E_sun_1215_W, E_sun_1305_W, d_sun_merc ; ; Read in the solar irradiance time series. Irradiance units are 1.e11 ph/s/cm^2 ; data_sun = (read_ascii( filename_uvvs_fuv_solar_irradiance, data_start=15 )).(0) jd_sun = reform(data_sun[0,*]) E_sun_1215_ph = reform(data_sun[5,*]) * 1.e11 ; ph/sec/cm^2 E_sun_1305_ph = reform(data_sun[6,*]) * 1.e11 ; ph/sec/cm^2 d_sun_merc = reform(data_sun[7,*]) ; AU ; ; change units from [ph/s/cm^2/nm] to ... ; 1W = 1J/s h_planck = 6.62606957d-34 ; (Joule seconds) or (m^2 kg / s) c_light = 299792458.d ; meter/second En_photon_1215 = h_planck * c_light / (121.5*1.e-9) ; Joule per photon En_photon_1305 = h_planck * c_light / (130.5*1.e-9) ; Joule per photon ; E_sun_1215_W = E_sun_1215_ph * En_photon_1215 * 100.^2 ; W/m^2 E_sun_1305_W = E_sun_1305_ph * En_photon_1305 * 100.^2 ; W/m^2 end ;***************************************************************************** ; U V V S T A B L E S ;***************************************************************************** ;----------------------------------------------------------------------------- ; SOLAR IRRADIANCE SPECTRUM TABLE ;----------------------------------------------------------------------------- Wavelength Solar Irradiance (nm) W/(m^2*micron) ---------- -------------------- 115.500 0.022069415 116.500 0.025910195 117.500 0.089982085 118.500 0.035036884 119.500 0.058519695 120.500 0.179395378 121.500 7.609758854 122.500 0.072500505 123.500 0.046690349 124.500 0.034098379 125.500 0.030336889 126.500 0.042510819 127.500 0.021790154 128.500 0.017215354 129.500 0.020485530 130.500 0.170658320 131.500 0.027283484 132.500 0.022040607 133.500 0.215179175 134.500 0.020587685 135.500 0.045874339 136.500 0.029140690 137.500 0.031375434 138.500 0.030718049 139.500 0.087460145 140.500 0.073130973 141.500 0.043055680 142.500 0.046283279 143.500 0.052934613 144.500 0.051744662 145.500 0.055302147 146.500 0.068115808 147.500 0.083849326 148.500 0.085873239 149.500 0.077554189 150.500 0.086932249 151.500 0.094185583 152.500 0.118118182 153.500 0.130058527 154.500 0.223324746 155.500 0.195854440 156.500 0.193892509 157.500 0.170519322 158.500 0.168090224 159.500 0.165220037 160.500 0.185171530 161.500 0.217938006 162.500 0.251715064 163.500 0.269434184 164.500 0.315835059 165.500 0.496826380 166.500 0.336834699 167.500 0.403928131 168.500 0.436650902 169.500 0.575942457 170.500 0.663992584 171.500 0.668008089 172.500 0.733705580 173.500 0.738971472 174.500 0.908118367 175.500 1.114145160 176.500 1.207007170 177.500 1.470685482 178.500 1.640784383 179.500 1.632491946 180.500 2.120570183 181.500 2.506975651 182.500 2.394117594 183.500 2.566181660 184.500 2.249355078 185.500 2.555017710 186.500 2.949091434 187.500 3.299386024 188.500 3.526929855 189.500 3.879424095 190.500 4.088646889 191.500 4.370957375 192.500 4.704664230 193.500 3.673233032 194.500 5.931314468 195.500 5.760019779 196.500 6.452893257 197.500 6.528952122 198.500 6.572710991 199.500 7.154626846 200.500 7.774069786 201.500 8.612550735 202.500 8.511294365 203.500 9.807108879 204.500 10.843175888 205.500 11.147396088 206.500 11.527135849 207.500 13.257861137 208.500 15.121737480 209.500 21.662023544 210.500 28.018045425 211.500 33.732936859 212.500 32.351577759 213.500 29.197437286 214.500 41.470726013 215.500 34.193946838 216.500 32.910526276 217.500 31.893245697 218.500 45.506072998 219.500 47.758289337 220.500 47.335044861 221.500 33.535869598 222.500 49.272632599 223.500 62.671394348 224.500 57.649734497 225.500 50.943412781 226.500 35.931884766 227.500 36.262115479 228.500 51.989933014 229.500 44.111766815 230.500 53.855934143 231.500 46.382457733 232.500 49.850124359 233.500 41.839836121 234.500 33.871810913 235.500 54.515613556 236.500 42.144817352 237.500 51.118438721 238.500 35.098274231 239.500 43.242458344 240.500 39.709426880 241.500 46.458198547 242.500 69.706848145 243.500 63.469440460 244.500 60.477352142 245.500 47.761951447 246.500 47.875400543 247.500 55.226467133 248.500 42.667495728 249.500 54.750392914 250.500 57.579776764 251.500 44.580970764 252.500 39.487949371 253.500 50.939323425 254.500 56.395427704 255.500 79.990768433 256.500 95.970100403 257.500 119.126342773 258.500 126.717819214 259.500 105.446243286 260.500 86.046485901 261.500 84.167282104 262.500 106.618598938 263.500 157.074432373 264.500 244.211120605 265.500 253.466369629 266.500 245.836441040 267.500 246.225494385 268.500 246.251022339 269.500 219.889648438 270.500 277.837341309 271.500 229.445724487 272.500 182.901306152 273.500 207.889877319 274.500 123.189544678 275.500 177.510955811 276.500 244.025970459 277.500 242.254425049 278.500 159.578414917 279.500 76.852874756 280.500 89.007415771 281.500 205.998031616 282.500 287.251617432 283.500 319.188568115 284.500 243.420013428 285.500 124.663391113 286.500 328.145019531 287.500 358.440551758 288.500 299.111602783 289.500 446.054656982 290.500 595.927062988 291.500 553.576293945 292.500 479.681396484 293.500 544.388061523 294.500 490.888702393 295.500 550.729797363 296.500 484.235961914 297.500 519.845642090 298.500 382.379547119 299.500 529.744995117 300.500 352.561767578 301.500 477.270385742 302.500 470.681091309 303.500 614.669921875 304.500 578.012634277 305.500 601.194580078 306.500 554.527465820 307.500 635.299804688 308.500 639.220642090 309.500 482.763244629 310.500 616.429992676 311.500 770.750000000 312.500 696.414978027 313.500 725.936706543 314.500 684.393310547 315.500 660.159973145 316.500 639.272460938 317.500 783.063293457 318.500 672.809997559 319.500 713.443359375 320.500 800.192565918 321.500 703.690002441 322.500 710.436706543 323.500 663.789978027 324.500 778.977478027 325.500 904.560058594 326.500 1014.760009766 327.500 964.890014648 328.500 964.019104004 329.500 1114.395019531 330.500 1064.660034180 331.500 1005.416687012 332.500 999.823425293 333.500 967.900024414 334.500 1000.253356934 335.500 1013.730041504 336.500 873.052490234 337.500 896.336669922 338.500 978.340026855 339.500 1019.552490234 340.500 1070.716674805 341.500 973.737548828 342.500 1047.386718750 343.500 1038.239990234 344.500 862.656677246 345.500 962.589965820 346.500 981.369995117 347.500 964.290039063 348.500 975.396423340 349.500 1001.600036621 350.500 1073.959960938 351.500 1019.130004883 352.500 1031.849975586 353.500 1062.279052734 354.500 1153.570068359 355.500 1158.229980469 356.500 1044.069946289 357.500 905.049987793 358.500 821.109985352 359.500 1019.570007324 360.500 1054.069946289 361.500 980.559997559 362.500 1070.680053711 363.500 1092.319946289 364.500 1116.010009766 365.500 1257.930053711 366.500 1291.699951172 367.500 1222.190063477 368.500 1227.149658203 369.500 1242.599975586 370.500 1275.679931641 371.500 1225.170043945 372.500 1155.769897461 373.500 1025.359985352 374.500 962.619995117 375.500 1069.450073242 376.500 1144.410034180 377.500 1316.650024414 378.500 1315.690063477 379.500 1146.619995117 380.500 1226.510009766 381.500 1014.479980469 382.500 770.389953613 383.500 831.890014648 384.500 883.583007813 385.500 1044.619995117 386.500 1032.420043945 387.500 1062.209960938 388.500 1026.250000000 389.500 1152.770019531 390.500 1265.000000000 391.500 1324.910034180 392.500 1021.010070801 393.500 687.250000000 394.500 1085.260009766 395.500 1243.800048828 396.500 831.890014648 397.500 1191.759887695 398.500 1621.670043945 399.500 1727.560058594 400.500 1790.850097656 401.500 1812.174194336 402.500 1874.570068359 403.500 1829.510009766 404.500 1781.609985352 405.500 1730.520019531 406.500 1656.859985352 407.500 1674.837158203 408.500 1693.180908203 409.500 1715.010009766 410.500 1576.939941406 411.500 1621.581542969 412.500 1681.103637695 413.500 1765.030029297 414.500 1755.210083008 415.500 1756.960083008 416.500 1781.750000000 417.500 1706.489990234 418.500 1742.800048828 419.500 1708.920043945 420.500 1735.997802734 421.500 1818.270019531 422.500 1756.260009766 423.500 1676.530029297 424.500 1743.869995117 425.500 1718.119995117 426.500 1724.220092773 427.500 1638.619995117 428.500 1649.909912109 429.500 1491.670043945 430.500 1231.150024414 431.500 1535.949951172 432.500 1692.790039063 433.500 1645.560058594 434.500 1606.989990234 435.500 1767.150024414 436.500 1844.200073242 437.500 1723.420043945 438.500 1671.500000000 439.500 1816.130004883 440.500 1839.480102539 441.500 1867.616699219 442.500 1947.859985352 443.500 1946.290039063 444.500 1950.960083008 445.500 1935.880004883 446.500 1851.860107422 447.500 1992.059936523 448.500 2018.529907227 449.500 2019.220092773 450.500 2119.829833984 451.500 2135.370117188 452.500 2024.879882813 453.500 1966.280029297 454.500 2057.239990234 455.500 2063.090087891 456.500 2121.920166016 457.500 2109.040039063 458.500 2041.320068359 459.500 2037.179931641 460.500 2077.159912109 461.500 2102.580078125 462.500 2114.810058594 463.500 2062.030029297 464.500 2010.580078125 465.500 2045.779907227 466.500 2027.249389648 467.500 1971.660034180 468.500 2022.769897461 469.500 2032.340087891 470.500 1969.439941406 471.500 1986.569946289 472.500 2095.959960938 473.500 2035.680053711 474.500 2088.750000000 475.500 2093.429931641 476.500 2044.320068359 477.500 2103.409912109 478.500 2098.920166016 479.500 2093.979980469 480.500 2079.500000000 481.500 2091.949951172 482.500 2067.729980469 483.500 2036.230102539 484.500 2007.960083008 485.500 1795.940063477 486.500 1706.390014648 487.500 1903.929931641 488.500 1920.839965820 489.500 2018.419921875 490.500 2016.839965820 491.500 1907.479980469 492.500 1951.979980469 493.500 1958.989990234 494.500 2029.799926758 495.500 1972.839965820 496.500 2000.610107422 497.500 1984.195800781 498.500 1937.989990234 499.500 1928.609985352 500.500 1926.160034180 501.500 1849.599975586 502.500 1859.390014648 503.500 1942.160034180 504.500 1888.089965820 505.500 1965.039916992 506.500 2017.349975586 507.500 1984.212646484 508.500 1952.040527344 509.500 1918.260009766 510.500 1878.839965820 511.500 1924.649902344 512.500 1904.829956055 513.500 1853.489990234 514.500 1820.700073242 515.500 1858.510009766 516.500 1724.290039063 517.500 1614.250000000 518.500 1674.359985352 519.500 1792.050048828 520.500 1821.390014648 521.500 1853.130004883 522.500 1808.240112305 523.500 1845.059936523 524.500 1901.659912109 525.500 1867.179931641 526.500 1682.859985352 527.500 1764.150024414 528.500 1882.550048828 529.500 1875.049926758 530.500 1908.820068359 531.500 1900.729980469 532.500 1886.199951172 533.500 1842.609985352 534.500 1858.929931641 535.500 1927.960083008 536.500 1830.809936523 537.500 1873.680053711 538.500 1867.319946289 539.500 1801.359985352 540.500 1778.109985352 541.500 1852.510009766 542.500 1836.580078125 543.500 1870.740112305 544.500 1870.800048828 545.500 1875.059936523 546.500 1868.619995117 547.500 1829.589965820 548.500 1877.109985352 549.500 1872.169921875 550.500 1867.510498047 551.500 1854.069946289 552.500 1881.530029297 553.500 1842.650024414 554.500 1869.199951172 555.500 1875.489990234 556.500 1843.350097656 557.500 1793.020019531 558.500 1801.049926758 559.500 1733.050048828 560.500 1762.989990234 561.500 1819.059936523 562.500 1775.709960938 563.500 1783.772216797 564.500 1789.680053711 565.500 1786.209960938 566.500 1746.770019531 567.500 1806.939941406 568.500 1787.320068359 569.500 1777.070068359 570.500 1776.790039063 571.500 1724.010009766 572.500 1820.309936523 573.500 1834.059936523 574.500 1829.149902344 575.500 1788.200073242 576.500 1783.020019531 577.500 1808.869995117 578.500 1765.709960938 579.500 1771.319946289 580.500 1794.680053711 581.500 1792.330078125 582.500 1816.290039063 583.500 1818.590087891 584.500 1814.369995117 585.500 1779.430053711 586.500 1747.199951172 587.500 1792.539916992 588.500 1772.819946289 589.500 1609.240112305 590.500 1699.599975586 591.500 1753.089965820 592.500 1766.639892578 593.500 1749.219970703 594.500 1767.989990234 595.500 1747.500000000 596.500 1756.619995117 597.500 1769.400024414 598.500 1740.089965820 599.500 1740.949951172 ;----------------------------------------------------------------------------- ; SOLAR IRRADIANCE TIME SERIES TABLE ;----------------------------------------------------------------------------- JD E_1215_1AU E_1305_1AU E_1215_1AU_M E_1305_1AU_M E_1215_Merc E_1305_Merc Merc_dist MF 2453006.50 4.38507 0.10624 0.00000 0.00000 -NaN -NaN 0.00000 0 2453007.50 4.34592 0.10647 0.00000 0.00000 -NaN -NaN 0.00000 0 2453008.50 4.32886 0.10641 0.00000 0.00000 -NaN -NaN 0.00000 0 2453009.50 4.28409 0.10574 0.00000 0.00000 -NaN -NaN 0.00000 0 2453010.50 4.37938 0.10795 0.00000 0.00000 -NaN -NaN 0.00000 0 2453011.50 4.30935 0.10754 0.00000 0.00000 -NaN -NaN 0.00000 0 2453012.50 4.34904 0.10748 0.00000 0.00000 -NaN -NaN 0.00000 0 2453013.50 4.31662 0.10845 0.00000 0.00000 -NaN -NaN 0.00000 0 2453014.50 4.30390 0.10854 0.00000 0.00000 -NaN -NaN 0.00000 0 2453015.50 4.27314 0.10694 0.00000 0.00000 -NaN -NaN 0.00000 0 2453016.50 4.25283 0.10658 0.00000 0.00000 -NaN -NaN 0.00000 0 2453017.50 4.30971 0.10777 0.00000 0.00000 -NaN -NaN 0.00000 0 2453018.50 4.37583 0.10859 0.00000 0.00000 -NaN -NaN 0.00000 0 2453019.50 4.49510 0.10915 0.00000 0.00000 -NaN -NaN 0.00000 0 2453020.50 4.61052 0.11085 0.00000 0.00000 -NaN -NaN 0.00000 0 2453021.50 4.69854 0.11278 0.00000 0.00000 -NaN -NaN 0.00000 0 2453022.50 4.86417 0.11490 0.00000 0.00000 -NaN -NaN 0.00000 0 2453023.50 4.92613 0.11560 0.00000 0.00000 -NaN -NaN 0.00000 0 2453024.50 5.04454 0.11731 0.00000 0.00000 -NaN -NaN 0.00000 0 2453025.50 5.07641 0.11748 0.00000 0.00000 -NaN -NaN 0.00000 0 2453026.50 5.13146 0.11773 0.00000 0.00000 -NaN -NaN 0.00000 0 2453027.50 5.03892 0.11435 0.00000 0.00000 -NaN -NaN 0.00000 0 2453028.50 4.93280 0.11410 0.00000 0.00000 -NaN -NaN 0.00000 0 2453029.50 4.79982 0.11206 0.00000 0.00000 -NaN -NaN 0.00000 0 2453030.50 4.63431 0.10926 0.00000 0.00000 -NaN -NaN 0.00000 0 2453031.50 4.47908 0.10700 0.00000 0.00000 -NaN -NaN 0.00000 0 2453032.50 4.36910 0.10518 0.00000 0.00000 -NaN -NaN 0.00000 0 2453033.50 4.26488 0.10478 0.00000 0.00000 -NaN -NaN 0.00000 0 2453034.50 4.24726 0.10472 0.00000 0.00000 -NaN -NaN 0.00000 0 2453035.50 4.24604 0.10542 0.00000 0.00000 -NaN -NaN 0.00000 0 2453036.50 4.24659 0.10630 4.90335 0.11355 22.88750 0.53002 0.46286 0 2453037.50 4.26329 0.10689 4.77484 0.11164 22.16096 0.51812 0.46418 0 2453038.50 4.30347 0.10783 4.77263 0.11160 22.05126 0.51562 0.46522 0 2453039.50 4.33063 0.10848 4.62056 0.10913 21.27839 0.50255 0.46599 0 2453040.50 4.36305 0.10922 4.47991 0.10716 20.58747 0.49247 0.46648 0 2453041.50 4.35082 0.10881 4.37930 0.10552 20.10702 0.48449 0.46669 0 2453042.50 4.34574 0.10796 4.28627 0.10513 19.68575 0.48283 0.46662 0 2453043.50 4.35559 0.10829 4.27366 0.10534 19.65721 0.48454 0.46627 0 2453044.50 4.38672 0.10948 4.27204 0.10591 19.70278 0.48844 0.46564 0 2453045.50 4.44562 0.10918 4.27347 0.10593 19.78626 0.49047 0.46474 0 2453046.50 4.51523 0.11011 4.26571 0.10643 19.85126 0.49531 0.46356 0 2453047.50 4.58917 0.10979 4.28082 0.10701 20.04759 0.50113 0.46210 0 2453048.50 4.64049 0.10927 4.30935 0.10764 20.33338 0.50789 0.46036 0 2453049.50 4.70502 0.11040 4.32888 0.10824 20.60454 0.51518 0.45836 0 2453050.50 4.77823 0.11112 4.34078 0.10821 20.86773 0.52022 0.45609 0 2453051.50 4.79921 0.11112 4.30942 0.10785 20.94965 0.52431 0.45355 0 2453052.50 4.79359 0.11038 4.30764 0.10781 21.20222 0.53065 0.45074 0 2453053.50 4.77199 0.11024 4.30406 0.10690 21.47526 0.53340 0.44768 0 2453054.50 4.69878 0.10925 4.30972 0.10760 21.82549 0.54492 0.44437 0 2453055.50 4.65095 0.10884 4.33718 0.10864 22.32109 0.55913 0.44080 0 2453056.50 4.58214 0.10834 4.38224 0.10844 22.94743 0.56783 0.43700 0 2453057.50 4.53247 0.10829 4.44763 0.10935 23.72652 0.58332 0.43296 0 2453058.50 4.48483 0.10809 4.51080 0.10901 24.54487 0.59318 0.42869 0 2453059.50 4.43479 0.10735 4.50777 0.10898 25.04969 0.60562 0.42421 0 2453060.50 4.39430 0.10690 4.55837 0.10826 25.90063 0.61511 0.41952 0 2453061.50 4.39779 0.10829 4.61695 0.10954 26.85549 0.63719 0.41463 0 2453062.50 4.38623 0.10804 4.68623 0.11015 27.93736 0.65665 0.40956 0 2453063.50 4.33944 0.10695 4.72756 0.11067 28.91847 0.67695 0.40433 0 2453064.50 4.34439 0.10744 4.72484 0.11065 29.68753 0.69524 0.39894 0 2453065.50 4.32941 0.10698 4.72836 0.11018 30.54886 0.71186 0.39342 0 2453066.50 4.32323 0.10744 4.70978 0.10993 31.31833 0.73100 0.38779 0 2453067.50 4.27326 0.10516 4.65578 0.10873 31.89220 0.74477 0.38208 0 2453068.50 4.19093 0.10511 4.63067 0.10866 32.70108 0.76735 0.37631 0 2453069.50 4.19760 0.10420 4.62989 0.10865 33.72810 0.79153 0.37050 0 2453070.50 4.19901 0.10595 4.57584 0.10803 34.40358 0.81221 0.36470 0 2453071.50 4.22421 0.10674 4.54018 0.10837 35.24104 0.84119 0.35893 0 2453072.50 4.24567 0.10684 4.54048 0.10838 36.38795 0.86854 0.35324 0 2453073.50 4.31008 0.10779 4.54156 0.10830 37.57271 0.89598 0.34767 0 2453074.50 4.36024 0.10752 4.54173 0.10829 38.77137 0.92443 0.34226 0 2453075.50 4.41810 0.10652 4.52410 0.10882 39.82158 0.95783 0.33706 0 2453076.50 4.47529 0.10817 4.52914 0.10889 41.06052 0.98721 0.33212 0 2453077.50 4.54703 0.10868 4.53433 0.10894 42.27747 1.01577 0.32749 0 2453078.50 4.62575 0.11003 4.54970 0.10967 43.54713 1.04975 0.32323 0 2453079.50 4.64704 0.10993 4.55595 0.10974 44.66382 1.07580 0.31938 0 2453080.50 4.63731 0.10957 4.56406 0.11011 45.70583 1.10265 0.31600 0 2453081.50 4.60911 0.10815 4.57245 0.11023 46.63252 1.12414 0.31313 0 2453082.50 4.61021 0.10848 4.60308 0.11040 47.64639 1.14271 0.31082 0 2453083.50 4.57040 0.10775 4.59976 0.11043 48.14454 1.15587 0.30910 0 2453084.50 4.54630 0.10844 4.60925 0.11055 48.59137 1.16548 0.30799 0 2453085.50 4.57914 0.10844 4.56265 0.10979 48.24799 1.16099 0.30752 0 2453086.50 4.60593 0.10885 4.57057 0.10987 48.27831 1.16052 0.30769 0 2453087.50 4.59425 0.10986 4.51239 0.10957 47.41397 1.15132 0.30850 0 2453088.50 4.59272 0.10922 4.46244 0.10769 46.45563 1.12107 0.30993 0 2453089.50 4.61095 0.11029 4.46244 0.10769 45.85020 1.10646 0.31197 0 2453090.50 4.62599 0.11098 4.41137 0.10792 44.57602 1.09055 0.31458 0 2453091.50 4.65126 0.11095 4.37498 0.10722 43.33748 1.06211 0.31773 0 2453092.50 4.63896 0.11093 4.37498 0.10722 42.36305 1.03823 0.32136 0 2453093.50 4.57933 0.10995 4.37388 0.10781 41.29879 1.01798 0.32544 0 2453094.50 4.51321 0.10959 4.37388 0.10781 40.18913 0.99063 0.32990 0 2453095.50 4.46244 0.10769 4.38005 0.10679 39.10009 0.95328 0.33470 0 2453096.50 4.41137 0.10792 4.46672 0.10791 38.68965 0.93470 0.33978 0 2453097.50 4.37498 0.10722 4.46672 0.10791 37.50665 0.90612 0.34510 0 2453098.50 4.37387 0.10781 4.50244 0.10846 36.62935 0.88234 0.35060 0 2453099.50 4.38005 0.10679 4.49406 0.10723 35.41262 0.84499 0.35624 0 2453100.50 4.46672 0.10791 4.50293 0.10772 34.36701 0.82214 0.36197 0 2453101.50 4.50244 0.10846 4.50293 0.10772 33.29335 0.79645 0.36776 0 2453102.50 4.49406 0.10723 4.46935 0.10760 32.02552 0.77103 0.37357 0 2453103.50 4.50293 0.10772 4.42067 0.10584 30.71673 0.73539 0.37936 0 2453104.50 4.46935 0.10760 4.36562 0.10505 29.43583 0.70834 0.38511 0 2453105.50 4.42067 0.10584 4.36562 0.10505 28.58762 0.68793 0.39078 0 2453106.50 4.36562 0.10505 4.39577 0.10566 27.98140 0.67261 0.39635 0 2453107.50 4.39577 0.10566 4.43247 0.10672 27.45470 0.66099 0.40180 0 2453108.50 4.43247 0.10672 4.47914 0.10635 27.02488 0.64169 0.40711 0 2453109.50 4.47914 0.10635 4.48562 0.10744 26.39209 0.63217 0.41226 0 2453110.50 4.48562 0.10744 4.48562 0.10744 25.76652 0.61719 0.41724 0 2453111.50 4.50929 0.10711 4.50929 0.10711 25.31843 0.60139 0.42202 0 2453112.50 4.49596 0.10702 4.49596 0.10702 24.70406 0.58803 0.42661 0 2453113.50 4.54618 0.10829 4.54618 0.10829 24.47591 0.58303 0.43098 0 2453114.50 4.59315 0.10931 4.59315 0.10931 24.25960 0.57734 0.43512 0 2453115.50 4.63462 0.11043 4.63462 0.11043 24.04384 0.57292 0.43904 0 2453116.50 4.61853 0.11055 4.63462 0.11043 23.64601 0.56344 0.44272 0 2453117.50 4.64655 0.11132 4.61853 0.11055 23.20276 0.55536 0.44615 0 2453118.50 4.65682 0.11171 4.64655 0.11132 23.01412 0.55137 0.44933 0 2453119.50 4.60220 0.10977 4.65682 0.11171 22.76765 0.54618 0.45226 0 2453120.50 4.54752 0.10923 4.60220 0.10977 22.23784 0.53041 0.45492 0 2453121.50 4.48446 0.10930 4.54752 0.10923 21.74363 0.52228 0.45732 0 2453122.50 4.44446 0.10811 4.54752 0.10923 21.54234 0.51745 0.45945 0 2453123.50 4.35675 0.10671 4.48446 0.10930 21.07256 0.51359 0.46131 0 2453124.50 4.29980 0.10650 4.44446 0.10811 20.74154 0.50455 0.46290 0 2453125.50 4.27405 0.10534 4.35675 0.10671 20.21735 0.49518 0.46422 0 2453126.50 4.30696 0.10611 4.29980 0.10650 19.86429 0.49200 0.46525 0 2453127.50 4.36929 0.10716 4.27405 0.10534 19.68106 0.48508 0.46601 0 2453128.50 4.38770 0.10804 4.30696 0.10611 19.79177 0.48761 0.46649 0 2453129.50 4.36898 0.10708 4.36929 0.10716 20.06087 0.49199 0.46669 0 2453130.50 4.35773 0.10633 4.36929 0.10716 20.06759 0.49215 0.46661 0 2453131.50 4.34164 0.10646 4.38770 0.10804 20.18305 0.49696 0.46626 0 2453132.50 4.32886 0.10511 4.36898 0.10708 20.15192 0.49392 0.46562 0 2453133.50 4.30213 0.10413 4.35773 0.10633 20.17918 0.49240 0.46471 0 2453134.50 4.30427 0.10511 4.34164 0.10646 20.20818 0.49551 0.46351 0 2453135.50 4.35858 0.10504 4.32886 0.10511 20.27684 0.49236 0.46205 0 2453136.50 4.41204 0.10634 4.30213 0.10413 20.30436 0.49147 0.46031 0 2453137.50 4.40109 0.10501 4.30213 0.10413 20.48310 0.49580 0.45829 0 2453138.50 4.41846 0.10551 4.30427 0.10511 20.69891 0.50548 0.45601 0 2453139.50 4.47314 0.10639 4.35858 0.10504 21.19630 0.51082 0.45346 0 2453140.50 4.49669 0.10731 4.41204 0.10634 21.72473 0.52362 0.45065 0 2453141.50 4.53939 0.10854 4.40109 0.10501 21.96901 0.52420 0.44758 0 2453142.50 4.51419 0.10765 4.41846 0.10551 22.38684 0.53457 0.44426 0 2453143.50 4.53608 0.10772 4.47314 0.10639 23.03262 0.54783 0.44069 0 2453144.50 4.49565 0.10825 4.47314 0.10639 23.43635 0.55743 0.43688 0 2453145.50 4.48422 0.10868 4.49669 0.10731 24.00236 0.57281 0.43283 0 2453146.50 4.43253 0.10779 4.53939 0.10854 24.71589 0.59098 0.42856 0 2453147.50 4.44819 0.10794 4.51419 0.10765 25.10201 0.59864 0.42407 0 2453148.50 4.42005 0.10813 4.53608 0.10772 25.79204 0.61250 0.41937 0 2453149.50 4.43247 0.10874 4.53608 0.10772 26.40455 0.62704 0.41448 0 2453150.50 4.41155 0.10854 4.49565 0.10825 26.82194 0.64582 0.40940 0 2453151.50 4.39247 0.10753 4.48422 0.10868 27.45205 0.66533 0.40416 0 2453152.50 4.36965 0.10756 4.43253 0.10779 27.87425 0.67782 0.39877 0 2453153.50 4.31583 0.10687 4.44819 0.10794 28.76371 0.69801 0.39325 0 2453154.50 4.29980 0.10684 4.44819 0.10794 29.60544 0.71843 0.38762 0 2453155.50 4.28335 0.10608 4.42005 0.10813 30.30542 0.74136 0.38190 0 2453156.50 4.30782 0.10601 4.43249 0.10874 31.33116 0.76864 0.37613 0 2453157.50 4.26500 0.10565 4.41294 0.10858 32.17857 0.79176 0.37032 0 2453158.50 4.25369 0.10499 4.41430 0.10863 33.22142 0.81750 0.36452 0 2453159.50 4.30984 0.10636 4.39812 0.10778 34.17178 0.83741 0.35876 0 2453160.50 4.35290 0.10617 4.37901 0.10789 35.12824 0.86546 0.35307 0 2453161.50 4.36831 0.10671 4.33066 0.10738 35.86269 0.88926 0.34750 0 2453162.50 4.38011 0.10687 4.33396 0.10750 37.03291 0.91855 0.34210 0 2453163.50 4.40330 0.10681 4.31741 0.10736 38.03737 0.94590 0.33690 0 2453164.50 4.39565 0.10744 4.29391 0.10673 38.96244 0.96847 0.33197 0 2453165.50 4.34898 0.10619 4.29546 0.10683 40.08368 0.99687 0.32736 0 2453166.50 4.30366 0.10474 4.30912 0.10633 41.27618 1.01853 0.32311 0 2453167.50 4.27191 0.10507 4.26857 0.10571 41.87556 1.03700 0.31927 0 2453168.50 4.22090 0.10415 4.26896 0.10571 42.77660 1.05927 0.31591 0 2453169.50 4.22757 0.10351 4.25964 0.10530 43.46431 1.07449 0.31305 0 2453170.50 4.21393 0.10463 4.26020 0.10533 44.11473 1.09072 0.31076 0 2453171.50 4.25467 0.10479 4.28665 0.10561 44.87983 1.10573 0.30905 0 2453172.50 4.32580 0.10710 4.30851 0.10565 45.42802 1.11396 0.30797 0 2453173.50 4.38397 0.10833 4.30516 0.10561 45.52644 1.11683 0.30751 0 2453174.50 4.46220 0.10976 4.30618 0.10541 45.48106 1.11330 0.30770 0 2453175.50 4.42856 0.11022 4.30211 0.10532 45.19427 1.10643 0.30853 0 2453176.50 4.45174 0.11029 4.30815 0.10513 44.83388 1.09405 0.30999 0 2453177.50 4.47914 0.11077 4.30697 0.10456 44.23250 1.07385 0.31204 0 2453178.50 4.48403 0.11158 4.30190 0.10444 43.44538 1.05479 0.31467 0 2453179.50 4.48165 0.11150 4.32071 0.10478 42.77182 1.03727 0.31783 0 2453180.50 4.45547 0.11169 4.26803 0.10359 41.29704 1.00232 0.32148 0 2453181.50 4.41382 0.11023 4.26461 0.10348 40.23466 0.97628 0.32557 0 2453182.50 4.34207 0.10968 4.17824 0.10106 38.35839 0.92777 0.33004 0 2453183.50 4.31338 0.10738 4.17365 0.10092 37.22381 0.90011 0.33485 0 2453184.50 4.27864 0.10586 4.14959 0.10261 35.90898 0.88792 0.33994 0 2453185.50 4.27228 0.10596 4.13486 0.10269 34.68660 0.86143 0.34526 0 2453186.50 4.24892 0.10440 4.12376 0.10177 33.51588 0.82712 0.35077 0 2453187.50 4.24506 0.10491 4.12090 0.10172 32.44030 0.80076 0.35641 0 2453188.50 4.23717 0.10396 4.11442 0.10255 31.37120 0.78189 0.36215 0 2453189.50 4.24574 0.10362 4.23116 0.10430 31.25367 0.77041 0.36794 0 2453190.50 4.23307 0.10284 4.23062 0.10429 30.28603 0.74657 0.37375 0 2453191.50 4.27571 0.10319 4.40046 0.10911 30.54783 0.75742 0.37954 0 2453192.50 4.22506 0.10221 4.51333 0.11153 30.40415 0.75134 0.38528 0 2453193.50 4.12640 0.09953 4.59764 0.11263 30.08043 0.73692 0.39095 0 2453194.50 4.11062 0.10182 4.66538 0.11433 29.67226 0.72717 0.39652 0 2453195.50 4.11093 0.10228 4.66938 0.11440 28.89837 0.70802 0.40197 0 2453196.50 4.09870 0.10135 4.70377 0.11560 28.35783 0.69695 0.40727 0 2453197.50 4.09674 0.10218 4.67805 0.11397 27.50354 0.67009 0.41242 0 2453198.50 4.22763 0.10423 4.75524 0.11557 27.29568 0.66339 0.41739 0 2453199.50 4.40800 0.10931 4.79695 0.11670 26.91523 0.65480 0.42217 0 2453200.50 4.52361 0.11179 4.79695 0.11670 26.34097 0.64083 0.42674 0 2453201.50 4.60569 0.11281 4.83518 0.11667 26.01610 0.62774 0.43111 0 2453202.50 4.67505 0.11450 4.72312 0.11582 24.93193 0.61138 0.43525 0 2453203.50 4.70563 0.11564 4.74887 0.11555 24.62353 0.59915 0.43916 0 2453204.50 4.67805 0.11397 4.57541 0.10992 23.33245 0.56055 0.44283 0 2453205.50 4.75524 0.11557 4.49926 0.10929 22.59330 0.54881 0.44625 0 2453206.50 4.79695 0.11670 4.49926 0.10929 22.27536 0.54109 0.44943 0 2453207.50 4.83518 0.11667 4.47706 0.10832 21.88049 0.52938 0.45234 0 2453208.50 4.72312 0.11582 4.38207 0.10745 21.16695 0.51903 0.45500 0 2453209.50 4.74887 0.11555 4.24408 0.10386 20.28662 0.49644 0.45739 0 2453210.50 4.57541 0.10992 4.16732 0.10399 19.73602 0.49248 0.45951 0 2453211.50 4.49926 0.10929 4.05564 0.10310 19.05314 0.48437 0.46137 0 2453212.50 4.47706 0.10832 4.03429 0.10204 18.82374 0.47613 0.46295 0 2453213.50 4.38207 0.10745 4.03429 0.10204 18.71809 0.47346 0.46425 0 2453214.50 4.24408 0.10386 4.05282 0.10271 18.72107 0.47447 0.46528 0 2453215.50 4.16732 0.10399 4.10347 0.10329 18.89402 0.47560 0.46603 0 2453216.50 4.05564 0.10310 4.09368 0.10299 18.81085 0.47325 0.46650 0 2453217.50 4.03429 0.10204 4.11937 0.10361 18.91327 0.47570 0.46669 0 2453218.50 4.05282 0.10271 4.09729 0.10375 18.81888 0.47654 0.46661 0 2453219.50 4.10347 0.10329 4.14304 0.10327 19.05890 0.47505 0.46624 0 2453220.50 4.09368 0.10299 4.14304 0.10327 19.11172 0.47636 0.46560 0 2453221.50 4.11937 0.10361 4.16310 0.10471 19.28062 0.48495 0.46467 0 2453222.50 4.09729 0.10375 4.25155 0.10498 19.79232 0.48872 0.46347 0 2453223.50 4.14304 0.10327 4.28751 0.10647 20.08745 0.49880 0.46200 0 2453224.50 4.16310 0.10471 4.40091 0.10871 20.77577 0.51318 0.46025 0 2453225.50 4.25155 0.10498 4.45669 0.10917 21.22511 0.51994 0.45823 0 2453226.50 4.28751 0.10647 4.52403 0.11089 21.76281 0.53345 0.45594 0 2453227.50 4.40091 0.10871 4.52403 0.11089 22.00889 0.53948 0.45338 0 2453228.50 4.45669 0.10917 4.58190 0.11276 22.57012 0.55545 0.45056 0 2453229.50 4.52403 0.11089 4.68276 0.11353 23.38524 0.56695 0.44749 0 2453230.50 4.58190 0.11276 4.77230 0.11547 24.19113 0.58534 0.44416 0 2453231.50 4.68276 0.11353 4.72380 0.11434 24.33576 0.58903 0.44058 0 2453232.50 4.77230 0.11547 4.65499 0.11422 24.40256 0.59879 0.43676 0 2453233.50 4.72380 0.11434 4.63621 0.11328 24.76167 0.60501 0.43270 0 2453234.50 4.65499 0.11422 4.63621 0.11328 25.25892 0.61716 0.42842 0 2453235.50 4.63621 0.11328 4.54067 0.11053 25.26608 0.61501 0.42393 0 2453236.50 4.54067 0.11053 4.46042 0.10942 25.37964 0.62257 0.41922 0 2453237.50 4.46042 0.10942 4.45272 0.10945 25.93840 0.63757 0.41432 0 2453238.50 4.45272 0.10945 4.44403 0.10852 26.53445 0.64796 0.40925 0 2453239.50 4.44403 0.10852 4.44403 0.10852 27.22801 0.66490 0.40400 0 2453240.50 4.41571 0.10896 4.41571 0.10896 27.79180 0.68579 0.39860 0 2453241.50 4.38017 0.10863 4.38018 0.10863 28.34856 0.70308 0.39308 0 2453242.50 4.34390 0.10819 4.34390 0.10819 28.93733 0.72070 0.38745 0 2453243.50 4.26084 0.10600 4.26084 0.10600 29.24080 0.72744 0.38173 0 2453244.50 4.25485 0.10606 4.26084 0.10600 30.14631 0.74997 0.37595 0 2453245.50 4.24231 0.10491 4.25485 0.10606 31.05563 0.77411 0.37014 0 2453246.50 4.25577 0.10527 4.24231 0.10491 31.95812 0.79030 0.36434 0 2453247.50 4.22023 0.10503 4.24231 0.10491 32.99354 0.81590 0.35858 0 2453248.50 4.18879 0.10284 4.25577 0.10527 34.17303 0.84530 0.35290 0 2453249.50 4.14035 0.10084 4.22023 0.10503 34.98207 0.87058 0.34733 0 2453250.50 4.08714 0.10080 4.18879 0.10284 35.82649 0.87958 0.34193 0 2453251.50 4.17093 0.10302 4.18879 0.10284 36.93826 0.90687 0.33675 0 2453252.50 4.25032 0.10481 4.14035 0.10084 37.60218 0.91584 0.33183 0 2453253.50 4.33149 0.10729 4.08714 0.10080 38.17136 0.94138 0.32722 0 2453254.50 4.42012 0.10769 4.08714 0.10080 39.17992 0.96625 0.32298 0 2453255.50 4.47602 0.10857 4.17093 0.10302 40.94601 1.01138 0.31916 0 2453256.50 4.51633 0.10960 4.25032 0.10481 42.61552 1.05087 0.31581 0 2453257.50 4.55137 0.10970 4.25032 0.10481 43.39113 1.07000 0.31298 0 2453258.50 4.60563 0.11141 4.33149 0.10729 44.87064 1.11147 0.31070 0 2453259.50 4.66098 0.11237 4.33149 0.10729 45.36183 1.12364 0.30901 0 2453260.50 4.65921 0.11246 4.42012 0.10769 46.61179 1.13561 0.30794 0 2453261.50 4.68117 0.11297 4.47602 0.10857 47.33438 1.14819 0.30751 0 2453262.50 4.54746 0.11084 4.47602 0.10857 47.27000 1.14663 0.30772 0 2453263.50 4.48617 0.10777 4.51364 0.10954 47.40554 1.15047 0.30857 0 2453264.50 4.43131 0.10746 4.50915 0.10944 46.90924 1.13852 0.31004 0 2453265.50 4.47541 0.10854 4.53652 0.10938 46.56838 1.12282 0.31212 0 2453266.50 4.44874 0.10870 4.58237 0.11081 46.25164 1.11843 0.31476 0 2453267.50 4.42703 0.10815 4.57617 0.11065 45.27083 1.09460 0.31794 0 2453268.50 4.34715 0.10708 4.61469 0.11143 44.61826 1.07738 0.32160 0 2453269.50 4.28653 0.10551 4.60704 0.11127 43.43019 1.04898 0.32570 0 2453270.50 4.20298 0.10390 4.59625 0.11116 42.15957 1.01965 0.33018 0 2453271.50 4.14267 0.10342 4.59840 0.11122 40.97484 0.99108 0.33500 0 2453272.50 4.11625 0.10239 4.59006 0.11105 39.68328 0.96007 0.34010 0 2453273.50 4.10524 0.10201 4.46770 0.10918 37.44268 0.91498 0.34543 0 2453274.50 4.13038 0.10256 4.39853 0.10657 35.71423 0.86534 0.35094 0 2453275.50 4.12114 0.10264 4.36276 0.10643 34.31062 0.83698 0.35659 0 2453276.50 4.11588 0.10273 4.35848 0.10636 33.19961 0.81018 0.36233 0 2453277.50 4.12518 0.10159 4.38825 0.10687 32.38273 0.78861 0.36812 0 2453278.50 4.14861 0.10319 4.37196 0.10723 31.26803 0.76688 0.37393 0 2453279.50 4.25179 0.10451 4.36264 0.10708 30.25711 0.74267 0.37972 0 2453280.50 4.31656 0.10576 4.35988 0.10704 29.34377 0.72040 0.38546 0 2453281.50 4.35981 0.10654 4.31288 0.10660 28.19253 0.69684 0.39113 0 2453282.50 4.38592 0.10657 4.28515 0.10590 27.23079 0.67294 0.39669 0 2453283.50 4.36965 0.10635 4.25049 0.10505 26.28438 0.64963 0.40213 0 2453284.50 4.36366 0.10561 4.25200 0.10509 25.61410 0.63306 0.40743 0 2453285.50 4.39180 0.10585 4.24002 0.10481 24.90952 0.61573 0.41257 0 2453286.50 4.38219 0.10673 4.25794 0.10502 24.42366 0.60240 0.41754 0 2453287.50 4.37314 0.10658 4.26988 0.10560 23.94161 0.59213 0.42231 0 2453288.50 4.34439 0.10587 4.32075 0.10608 23.71083 0.58215 0.42688 0 2453289.50 4.27650 0.10518 4.33408 0.10671 23.30579 0.57381 0.43124 0 2453290.50 4.20995 0.10401 4.33882 0.10680 22.89031 0.56344 0.43537 0 2453291.50 4.22928 0.10440 4.37183 0.10702 22.65653 0.55464 0.43927 0 2453292.50 4.24653 0.10415 4.38277 0.10636 22.33908 0.54213 0.44294 0 2453293.50 4.25693 0.10502 4.43209 0.10761 22.24589 0.54011 0.44635 0 2453294.50 4.27338 0.10561 4.50236 0.10856 22.28146 0.53726 0.44952 0 2453295.50 4.27173 0.10603 4.51762 0.10871 22.07041 0.53112 0.45243 0 2453296.50 4.28360 0.10633 4.52109 0.10877 21.83104 0.52520 0.45508 0 2453297.50 4.30054 0.10627 4.54381 0.10965 21.71275 0.52398 0.45746 0 2453298.50 4.33082 0.10610 4.55194 0.10988 21.55184 0.52022 0.45957 0 2453299.50 4.38268 0.10733 4.53604 0.10961 21.30522 0.51482 0.46142 0 2453300.50 4.40690 0.10859 4.47887 0.10817 20.89413 0.50460 0.46299 0 2453301.50 4.47076 0.10886 4.47639 0.10803 20.76612 0.50117 0.46429 0 2453302.50 4.49315 0.10975 4.46678 0.10820 20.63084 0.49975 0.46531 0 2453303.50 4.54422 0.10991 4.41657 0.10772 20.33405 0.49596 0.46605 0 2453304.50 4.54770 0.10942 4.41718 0.10774 20.29648 0.49504 0.46651 0 2453305.50 4.60477 0.11030 4.40233 0.10770 20.21229 0.49448 0.46670 0 2453306.50 4.64765 0.11091 4.37489 0.10776 20.09452 0.49498 0.46660 0 2453307.50 4.62863 0.11035 4.37331 0.10698 20.11953 0.49217 0.46623 0 2453308.50 4.63596 0.11121 4.38493 0.10524 20.22963 0.48551 0.46557 0 2453309.50 4.63113 0.11145 4.32429 0.10462 20.02994 0.48460 0.46464 0 2453310.50 4.61162 0.11109 4.27543 0.10357 19.90706 0.48223 0.46343 0 2453311.50 4.52868 0.10927 4.27567 0.10355 20.03629 0.48525 0.46195 0 2453312.50 4.51119 0.10893 4.29066 0.10566 20.26042 0.49895 0.46019 0 2453313.50 4.49987 0.10878 4.30598 0.10572 20.51325 0.50362 0.45816 0 2453314.50 4.43271 0.10815 4.31514 0.10628 20.76472 0.51145 0.45586 0 2453315.50 4.42171 0.10831 4.31563 0.10625 21.00267 0.51706 0.45330 0 2453316.50 4.40605 0.10858 4.34134 0.10619 21.39377 0.52332 0.45047 0 2453317.50 4.42219 0.10787 4.34752 0.10654 21.72064 0.53228 0.44739 0 2453318.50 4.42886 0.10547 4.34705 0.10653 22.04604 0.54025 0.44405 0 2453319.50 4.34494 0.10474 4.33634 0.10568 22.35119 0.54471 0.44046 0 2453320.50 4.28005 0.10321 4.34958 0.10559 22.81418 0.55381 0.43664 0 2453321.50 4.29442 0.10568 4.40186 0.10544 23.52394 0.56350 0.43258 0 2453322.50 4.31289 0.10565 4.45126 0.10497 24.26654 0.57225 0.42829 0 2453323.50 4.32103 0.10628 4.46954 0.10518 24.88685 0.58565 0.42379 0 2453324.50 4.31822 0.10624 4.46841 0.10512 25.44299 0.59855 0.41908 0 2453325.50 4.34299 0.10621 4.49630 0.10598 26.21168 0.61779 0.41417 0 2453326.50 4.34256 0.10643 4.51556 0.10594 26.98245 0.63304 0.40909 0 2453327.50 4.32849 0.10536 4.57566 0.10714 28.05713 0.65694 0.40384 0 2453328.50 4.33791 0.10527 4.60324 0.10733 28.99645 0.67610 0.39844 0 2453329.50 4.39443 0.10509 4.60324 0.10733 29.81821 0.69527 0.39291 0 2453330.50 4.44507 0.10464 4.62434 0.10868 30.83322 0.72463 0.38727 0 2453331.50 4.46550 0.10496 4.63976 0.11033 31.87060 0.75785 0.38155 0 2453332.50 4.49394 0.10588 4.60287 0.11036 32.59706 0.78157 0.37577 0 2453333.50 4.51468 0.10591 4.56868 0.10948 33.37839 0.79986 0.36997 0 2453334.50 4.57566 0.10714 4.56868 0.10948 34.45030 0.82555 0.36417 0 2453335.50 4.60324 0.10733 4.48837 0.10817 34.94146 0.84207 0.35840 0 2453336.50 4.62434 0.10868 4.42605 0.10765 35.57514 0.86524 0.35272 0 2453337.50 4.63976 0.11033 4.42605 0.10765 36.72368 0.89318 0.34716 0 2453338.50 4.60287 0.11036 4.36366 0.10696 37.35760 0.91568 0.34177 0 2453339.50 4.56868 0.10948 4.36660 0.10700 38.54170 0.94441 0.33659 0 2453340.50 4.48837 0.10817 4.33748 0.10677 39.42725 0.97051 0.33168 0 2453341.50 4.42605 0.10765 4.33748 0.10677 40.54306 0.99797 0.32708 0 2453342.50 4.36366 0.10696 4.30029 0.10529 41.25487 1.01010 0.32286 0 2453343.50 4.36660 0.10700 4.30029 0.10529 42.24506 1.03434 0.31905 0 2453344.50 4.33748 0.10677 4.25142 0.10444 42.65216 1.04775 0.31572 0 2453345.50 4.30029 0.10529 4.22702 0.10372 43.17484 1.05939 0.31290 0 2453346.50 4.25142 0.10444 4.22702 0.10372 43.80554 1.07487 0.31064 0 2453347.50 4.22702 0.10372 4.19754 0.10434 43.97100 1.09305 0.30897 0 2453348.50 4.19754 0.10434 4.23974 0.10441 44.71630 1.10120 0.30792 0 2453349.50 4.23974 0.10441 4.23974 0.10441 44.83663 1.10416 0.30751 0 2453350.50 4.22482 0.10467 4.22482 0.10467 44.61232 1.10530 0.30773 0 2453351.50 4.24928 0.10514 4.22482 0.10467 44.36176 1.09909 0.30860 0 2453352.50 4.21344 0.10431 4.24928 0.10514 44.19017 1.09338 0.31010 0 2453353.50 4.21032 0.10398 4.21344 0.10431 43.23170 1.07027 0.31219 0 2453354.50 4.13558 0.10313 4.21344 0.10431 42.50367 1.05225 0.31485 0 2453355.50 4.10971 0.10245 4.21032 0.10398 41.62404 1.02799 0.31804 0 2453356.50 4.12848 0.10286 4.21032 0.10398 40.67828 1.00463 0.32172 0 2453357.50 4.18194 0.10323 4.13558 0.10313 38.95418 0.97146 0.32583 0 2453358.50 4.21350 0.10457 4.10971 0.10245 37.66403 0.93887 0.33033 0 2453359.50 4.25277 0.10448 4.10971 0.10245 36.58692 0.91202 0.33515 0 2453360.50 4.26812 0.10549 4.12848 0.10286 35.65911 0.88843 0.34026 0 2453361.50 4.39675 0.10609 4.18194 0.10323 35.01406 0.86429 0.34560 0 2453362.50 4.45002 0.10772 4.18194 0.10323 33.92248 0.83734 0.35111 0 2453363.50 4.50954 0.10876 4.21350 0.10457 33.10437 0.82156 0.35676 0 2453364.50 4.57535 0.10902 4.25277 0.10448 32.36276 0.79504 0.36250 0 2453365.50 4.56771 0.10886 4.26812 0.10549 31.46581 0.77768 0.36830 0 2453366.50 4.53614 0.10785 4.26812 0.10549 30.49638 0.75372 0.37411 0 2453367.50 4.46330 0.10816 4.39675 0.10609 30.46526 0.73511 0.37989 0 2453368.50 4.41920 0.10695 4.45002 0.10772 29.92331 0.72435 0.38563 0 2453369.50 4.41596 0.10704 4.50954 0.10876 29.45209 0.71031 0.39130 0 2453370.50 4.39381 0.10812 4.57535 0.10902 29.05021 0.69221 0.39686 0 2453371.50 4.42275 0.10843 4.57535 0.10902 28.27008 0.67362 0.40230 0 2453372.50 4.36036 0.10682 4.56771 0.10886 27.49431 0.65524 0.40759 0 2453373.50 4.35479 0.10572 4.53585 0.10783 26.62752 0.63301 0.41273 0 2453374.50 4.27626 0.10472 4.46317 0.10813 25.58258 0.61978 0.41769 0 2453375.50 4.22708 0.10409 4.41872 0.10694 24.75938 0.59922 0.42245 0 2453376.50 4.16414 0.10430 4.41853 0.10694 24.23190 0.58645 0.42702 0 2453377.50 4.14683 0.10317 4.41222 0.10697 23.71168 0.57489 0.43137 0 2453378.50 4.09356 0.10214 4.38739 0.10790 23.13347 0.56894 0.43549 0 2453379.50 4.09509 0.10179 4.40803 0.10818 22.83206 0.56032 0.43939 0 2453380.50 4.07668 0.10235 4.34276 0.10652 22.12434 0.54267 0.44304 0 2453381.50 4.06958 0.10247 4.33239 0.10552 21.73568 0.52937 0.44645 0 2453382.50 4.06469 0.10123 4.33005 0.10549 21.41983 0.52186 0.44961 0 2453383.50 4.13191 0.10194 4.25479 0.10450 20.77852 0.51034 0.45251 0 2453384.50 4.22262 0.10185 4.20707 0.10397 20.30786 0.50186 0.45515 0 2453385.50 4.32091 0.10509 4.15085 0.10396 19.82900 0.49662 0.45753 0 2453386.50 4.45822 0.10955 4.13119 0.10308 19.55457 0.48792 0.45964 0 2453387.50 4.48831 0.10859 4.08111 0.10207 19.16410 0.47930 0.46147 0 2453388.50 4.55266 0.10901 4.07730 0.10190 19.01718 0.47528 0.46303 0 2453389.50 4.56214 0.10700 4.07631 0.10191 18.90726 0.47268 0.46432 0 2453390.50 4.58758 0.10870 4.06928 0.10242 18.79271 0.47297 0.46533 0 2453391.50 4.59205 0.10921 4.07313 0.10280 18.75135 0.47325 0.46607 0 2453392.50 4.53039 0.10741 4.09084 0.10218 18.79618 0.46950 0.46652 0 2453393.50 4.48856 0.10525 4.16141 0.10289 19.10605 0.47241 0.46670 0 2453394.50 4.45718 0.10652 4.25071 0.10326 19.52474 0.47430 0.46659 0 2453395.50 4.40513 0.10661 4.33568 0.10582 19.94777 0.48684 0.46621 0 2453396.50 4.35406 0.10600 4.45623 0.10921 20.56073 0.50386 0.46555 0 2453397.50 4.30568 0.10513 4.45615 0.10919 20.64365 0.50584 0.46461 0 2453398.50 4.24989 0.10547 4.49111 0.10885 20.91500 0.50689 0.46339 0 2453399.50 4.17907 0.10373 4.55561 0.10927 21.35269 0.51216 0.46190 0 2453400.50 4.14873 0.10386 4.56755 0.10804 21.57334 0.51030 0.46013 0 2453401.50 4.11264 0.10303 4.59127 0.10922 21.87868 0.52044 0.45810 0 2453402.50 4.08634 0.10320 4.58556 0.10934 22.07319 0.52631 0.45579 0 2453403.50 4.07723 0.10204 4.51615 0.10764 21.98656 0.52403 0.45322 0 2453404.50 4.05117 0.10260 4.51568 0.10765 22.26187 0.53069 0.45038 0 2453405.50 4.02200 0.10176 4.45410 0.10550 22.26292 0.52732 0.44729 0 2453406.50 3.99857 0.10240 4.43453 0.10620 22.50045 0.53884 0.44394 0 2453407.50 4.04053 0.10266 4.35592 0.10623 22.46371 0.54783 0.44035 0 2453408.50 4.08610 0.10400 4.30465 0.10523 22.59099 0.55223 0.43652 0 2453409.50 4.18096 0.10547 4.24602 0.10453 22.70456 0.55895 0.43245 0 2453410.50 4.25748 0.10601 4.19551 0.10456 22.88672 0.57040 0.42815 0 2453411.50 4.33730 0.10762 4.19381 0.10454 23.36711 0.58245 0.42364 0 2453412.50 4.37883 0.10793 4.14510 0.10325 23.61867 0.58831 0.41893 0 2453413.50 4.45070 0.10824 4.10729 0.10312 23.96163 0.60157 0.41402 0 2453414.50 4.49810 0.10947 4.06505 0.10247 24.30925 0.61277 0.40893 0 2453415.50 4.56263 0.10989 4.02741 0.10194 24.71537 0.62561 0.40367 0 2453416.50 4.57982 0.11041 4.02553 0.10190 25.37871 0.64245 0.39827 0 2453417.50 4.59921 0.11033 4.00076 0.10149 25.93813 0.65797 0.39274 0 2453418.50 4.57223 0.10961 3.97097 0.10102 26.50062 0.67418 0.38710 0 2453419.50 4.48831 0.10809 3.94096 0.10081 27.09560 0.69314 0.38137 0 2453420.50 4.39308 0.10594 3.93830 0.10078 27.91701 0.71441 0.37560 0 2453421.50 4.39638 0.10566 3.93624 0.10137 28.78551 0.74130 0.36979 0 2453422.50 4.27711 0.10562 3.95589 0.10154 29.85861 0.76645 0.36399 0 2453423.50 4.22947 0.10405 3.98090 0.10200 31.02124 0.79481 0.35823 0 2453424.50 4.15986 0.10366 3.97734 0.10193 31.99982 0.82008 0.35255 0 2453425.50 4.12102 0.10333 4.03546 0.10228 33.51532 0.84948 0.34700 0 2453426.50 4.10341 0.10266 4.10905 0.10304 35.21124 0.88294 0.34161 0 2453427.50 4.05924 0.10225 4.14942 0.10379 36.65853 0.91691 0.33644 0 2453428.50 4.01300 0.10185 4.14292 0.10365 37.69180 0.94302 0.33154 0 2453429.50 3.96676 0.10065 4.21459 0.10469 39.42696 0.97934 0.32695 0 2453430.50 3.93153 0.10099 4.20890 0.10458 40.40889 1.00401 0.32273 0 2453431.50 3.90315 0.09969 4.32338 0.10611 42.50099 1.04310 0.31894 0 2453432.50 3.87716 0.10007 4.40513 0.10742 44.22062 1.07837 0.31562 0 2453433.50 3.89416 0.10067 4.40198 0.10735 44.98420 1.09707 0.31282 0 2453434.50 3.90334 0.10086 4.43057 0.10783 45.93279 1.11785 0.31058 0 2453435.50 3.92113 0.10086 4.45317 0.10787 46.66137 1.13034 0.30893 0 2453436.50 3.96756 0.10080 4.44910 0.10779 46.93114 1.13706 0.30790 0 2453437.50 4.04701 0.10179 4.47259 0.10720 47.29992 1.13371 0.30750 0 2453438.50 4.07980 0.10237 4.47259 0.10720 47.22349 1.13188 0.30775 0 2453439.50 4.16855 0.10378 4.47039 0.10723 46.92925 1.12565 0.30864 0 2453440.50 4.29840 0.10569 4.44109 0.10757 46.16842 1.11826 0.31015 0 2453441.50 4.39057 0.10710 4.44109 0.10757 45.54614 1.10319 0.31226 0 2453442.50 4.41969 0.10765 4.39082 0.10660 44.26764 1.07476 0.31494 0 2453443.50 4.44709 0.10775 4.39082 0.10660 43.37963 1.05320 0.31815 0 2453444.50 4.47259 0.10720 4.33571 0.10630 41.85854 1.02627 0.32184 0 2453445.50 4.47039 0.10723 4.27326 0.10438 40.21836 0.98235 0.32596 0 2453446.50 4.44109 0.10757 4.27326 0.10438 39.12900 0.95575 0.33047 0 2453447.50 4.39082 0.10660 4.23460 0.10441 37.66453 0.92867 0.33531 0 2453448.50 4.33571 0.10630 4.20084 0.10417 36.24990 0.89893 0.34042 0 2453449.50 4.27326 0.10438 4.20084 0.10417 35.13840 0.87137 0.34576 0 2453450.50 4.23460 0.10441 4.11276 0.10300 33.32879 0.83466 0.35128 0 2453451.50 4.20084 0.10417 4.13435 0.10392 32.45072 0.81565 0.35694 0 2453452.50 4.11276 0.10300 4.13576 0.10431 31.44164 0.79301 0.36268 0 2453453.50 4.13435 0.10392 4.13576 0.10431 30.46056 0.76827 0.36848 0 2453454.50 4.13576 0.10431 4.04927 0.10271 28.90519 0.73321 0.37428 0 2453455.50 4.04927 0.10271 4.02365 0.10226 27.85407 0.70791 0.38007 0 2453456.50 4.02365 0.10226 3.99202 0.10208 26.81926 0.68582 0.38581 0 2453457.50 3.99202 0.10208 3.99202 0.10208 26.04926 0.66613 0.39147 0 2453458.50 3.93667 0.10166 3.93667 0.10166 24.97381 0.64494 0.39703 0 2453459.50 3.94279 0.10156 3.94279 0.10156 24.34170 0.62703 0.40246 0 2453460.50 3.94242 0.10144 3.94242 0.10144 23.71194 0.61012 0.40775 0 2453461.50 3.93117 0.10093 3.93117 0.10093 23.06045 0.59209 0.41288 0 2453462.50 3.93429 0.10101 3.93117 0.10093 22.51708 0.57813 0.41783 0 2453463.50 3.98933 0.10188 3.93429 0.10101 22.03005 0.56559 0.42260 0 2453464.50 4.01484 0.10249 3.98933 0.10188 21.86413 0.55837 0.42715 0 2453465.50 4.04677 0.10251 4.01484 0.10249 21.56314 0.55047 0.43150 0 2453466.50 4.13539 0.10258 4.04677 0.10251 21.32544 0.54021 0.43562 0 2453467.50 4.18861 0.10410 4.13539 0.10258 21.40865 0.53107 0.43951 0 2453468.50 4.24353 0.10422 4.13539 0.10258 21.05762 0.52236 0.44315 0 2453469.50 4.25601 0.10432 4.18861 0.10410 21.00485 0.52204 0.44656 0 2453470.50 4.32702 0.10471 4.24353 0.10422 20.98321 0.51534 0.44971 0 2453471.50 4.32005 0.10528 4.25601 0.10432 20.77672 0.50928 0.45260 0 2453472.50 4.29039 0.10417 4.32702 0.10471 20.87984 0.50525 0.45523 0 2453473.50 4.24733 0.10298 4.32005 0.10528 20.63110 0.50280 0.45760 0 2453474.50 4.27149 0.10340 4.32005 0.10528 20.44315 0.49822 0.45970 0 2453475.50 4.23240 0.10360 4.29039 0.10417 20.14229 0.48907 0.46152 0 2453476.50 4.23742 0.10367 4.24733 0.10298 19.80649 0.48024 0.46308 0 2453477.50 4.21228 0.10335 4.27149 0.10340 19.80956 0.47955 0.46436 0 2453478.50 4.18824 0.10378 4.23240 0.10360 19.54381 0.47840 0.46536 0 2453479.50 4.12934 0.10325 4.23742 0.10367 19.50617 0.47721 0.46608 0 2453480.50 4.07038 0.10213 4.21228 0.10335 19.35337 0.47485 0.46653 0 2453481.50 4.08304 0.10151 4.18824 0.10378 19.22917 0.47647 0.46670 0 2453482.50 4.06964 0.10198 4.18824 0.10378 19.23843 0.47670 0.46659 0 2453483.50 4.01900 0.10188 4.12934 0.10325 18.99975 0.47505 0.46619 0 2453484.50 3.97245 0.10108 4.07038 0.10213 18.78243 0.47127 0.46552 0 2453485.50 3.95722 0.10021 4.08304 0.10151 18.91786 0.47033 0.46457 0 2453486.50 3.95080 0.10111 4.06964 0.10198 18.95565 0.47500 0.46335 0 2453487.50 4.04230 0.10283 4.01900 0.10188 18.84162 0.47763 0.46185 0 2453488.50 4.07674 0.10409 3.97245 0.10108 18.76734 0.47753 0.46007 0 2453489.50 4.10059 0.10490 3.97245 0.10108 18.93537 0.48181 0.45803 0 2453490.50 4.15735 0.10467 3.95722 0.10021 19.05488 0.48254 0.45571 0 2453491.50 4.17943 0.10461 3.95080 0.10111 19.24124 0.49243 0.45313 0 2453492.50 4.20836 0.10476 4.04230 0.10283 19.93620 0.50713 0.45029 0 2453493.50 4.26757 0.10557 4.07674 0.10409 20.38577 0.52052 0.44719 0 2453494.50 4.36231 0.10807 4.10059 0.10490 20.81605 0.53249 0.44384 0 2453495.50 4.38415 0.10784 4.15735 0.10467 21.45080 0.54005 0.44024 0 2453496.50 4.40635 0.10896 4.15735 0.10467 21.83011 0.54960 0.43640 0 2453497.50 4.39999 0.10861 4.17943 0.10461 22.36175 0.55972 0.43232 0 2453498.50 4.30543 0.10652 4.20836 0.10476 22.97130 0.57182 0.42802 0 2453499.50 4.32005 0.10543 4.26757 0.10557 23.79402 0.58862 0.42350 0 2453500.50 4.35290 0.10754 4.36231 0.10807 24.87388 0.61621 0.41878 0 2453501.50 4.41461 0.10875 4.36231 0.10807 25.46827 0.63093 0.41387 0 2453502.50 4.39436 0.10919 4.38415 0.10784 26.23787 0.64538 0.40877 0 2453503.50 4.39326 0.10823 4.40635 0.10896 27.06278 0.66918 0.40351 0 2453504.50 4.32861 0.10747 4.39937 0.10857 27.75893 0.68508 0.39810 0 2453505.50 4.30965 0.10582 4.30531 0.10645 27.93699 0.69075 0.39257 0 2453506.50 4.26830 0.10348 4.30521 0.10640 28.75713 0.71068 0.38692 0 2453507.50 4.26733 0.10439 4.32137 0.10541 29.73857 0.72543 0.38120 0 2453508.50 4.19711 0.10350 4.35365 0.10730 30.89049 0.76132 0.37542 0 2453509.50 4.12616 0.10346 4.40697 0.10841 32.25899 0.79357 0.36961 0 2453510.50 4.06157 0.10251 4.40538 0.10834 33.28372 0.81854 0.36381 0 2453511.50 4.00542 0.10182 4.39111 0.10870 34.25134 0.84791 0.35805 0 2453512.50 3.98395 0.10075 4.38923 0.10792 35.34829 0.86915 0.35238 0 2453513.50 4.01472 0.10226 4.33808 0.10736 36.06355 0.89254 0.34683 0 2453514.50 4.03814 0.10320 4.33931 0.10735 37.21967 0.92078 0.34145 0 2453515.50 4.07136 0.10340 4.31142 0.10595 38.12475 0.93691 0.33628 0 2453516.50 4.10805 0.10390 4.25918 0.10400 38.78365 0.94700 0.33139 0 2453517.50 4.15717 0.10511 4.25825 0.10405 39.86830 0.97420 0.32681 0 2453518.50 4.17399 0.10496 4.24688 0.10437 40.80463 1.00281 0.32261 0 2453519.50 4.19974 0.10442 4.17940 0.10307 41.11372 1.01393 0.31883 0 2453520.50 4.22500 0.10424 4.17789 0.10303 41.96442 1.03492 0.31553 0 2453521.50 4.28708 0.10447 4.09647 0.10308 41.88288 1.05386 0.31274 0 2453522.50 4.31785 0.10576 4.09421 0.10305 42.46196 1.06872 0.31052 0 2453523.50 4.35290 0.10498 4.04410 0.10259 42.38631 1.07527 0.30889 0 2453524.50 4.31510 0.10410 4.00650 0.10219 42.26831 1.07814 0.30788 0 2453525.50 4.30017 0.10338 4.00657 0.10222 42.37197 1.08102 0.30750 0 2453526.50 4.34238 0.10520 3.98594 0.10125 42.08035 1.06896 0.30777 0 2453527.50 4.36262 0.10440 3.98605 0.10128 41.83469 1.06298 0.30868 0 2453528.50 4.33601 0.10525 4.00984 0.10218 41.67020 1.06186 0.31021 0 2453529.50 4.37088 0.10571 4.02768 0.10263 41.28674 1.05204 0.31234 0 2453530.50 4.36813 0.10633 4.02719 0.10260 40.57825 1.03384 0.31503 0 2453531.50 4.38030 0.10689 4.05336 0.10279 40.01897 1.01481 0.31825 0 2453532.50 4.31730 0.10639 4.06101 0.10303 39.17723 0.99390 0.32196 0 2453533.50 4.23283 0.10551 4.05924 0.10299 38.17299 0.96854 0.32610 0 2453534.50 4.20157 0.10433 4.05875 0.10291 37.13249 0.94147 0.33061 0 2453535.50 4.14487 0.10224 4.05552 0.10283 36.03880 0.91382 0.33546 0 2453536.50 4.05148 0.10250 4.05758 0.10180 34.98065 0.87759 0.34058 0 2453537.50 4.02346 0.10269 4.09077 0.10200 34.18470 0.85233 0.34593 0 2453538.50 4.00762 0.10258 4.09946 0.10206 33.18859 0.82626 0.35145 0 2453539.50 3.98756 0.10166 4.09632 0.10201 32.12068 0.79986 0.35711 0 2453540.50 4.00677 0.10213 4.12244 0.10251 31.30978 0.77857 0.36286 0 2453541.50 4.02187 0.10231 4.16976 0.10331 30.68134 0.76020 0.36865 0 2453542.50 4.04573 0.10252 4.16669 0.10326 29.71512 0.73644 0.37446 0 2453543.50 4.04365 0.10270 4.20132 0.10377 29.05701 0.71770 0.38025 0 2453544.50 4.03172 0.10230 4.26176 0.10547 28.60547 0.70791 0.38598 0 2453545.50 4.03460 0.10117 4.32140 0.10742 28.17375 0.70037 0.39164 0 2453546.50 4.07288 0.10160 4.38972 0.10825 27.82426 0.68616 0.39720 0 2453547.50 4.08267 0.10177 4.38972 0.10825 27.07879 0.66778 0.40263 0 2453548.50 4.10915 0.10235 4.47253 0.11019 26.87927 0.66223 0.40791 0 2453549.50 4.16127 0.10317 4.55725 0.11170 26.71308 0.65476 0.41304 0 2453550.50 4.19888 0.10375 4.55303 0.11152 26.06043 0.63830 0.41798 0 2453551.50 4.26176 0.10547 4.57529 0.11180 25.60205 0.62560 0.42274 0 2453552.50 4.32140 0.10742 4.57529 0.11180 25.05954 0.61235 0.42729 0 2453553.50 4.38972 0.10825 4.52746 0.11112 24.30174 0.59647 0.43163 0 2453554.50 4.47253 0.11019 4.47749 0.11054 23.58195 0.58218 0.43574 0 2453555.50 4.55725 0.11170 4.39149 0.10892 22.72250 0.56359 0.43962 0 2453556.50 4.55303 0.11152 4.31993 0.10688 21.98655 0.54397 0.44326 0 2453557.50 4.57529 0.11180 4.21491 0.10507 21.12724 0.52668 0.44666 0 2453558.50 4.52746 0.11112 4.21491 0.10507 20.83309 0.51935 0.44980 0 2453559.50 4.47749 0.11054 4.14781 0.10356 20.24094 0.50537 0.45268 0 2453560.50 4.39149 0.10892 4.07625 0.10321 19.66313 0.49789 0.45531 0 2453561.50 4.31993 0.10688 4.06035 0.10348 19.38505 0.49405 0.45767 0 2453562.50 4.21491 0.10507 4.04016 0.10283 19.11368 0.48649 0.45976 0 2453563.50 4.14781 0.10356 3.97820 0.10218 18.67248 0.47961 0.46158 0 2453564.50 4.07625 0.10321 3.94156 0.10077 18.37720 0.46983 0.46312 0 2453565.50 4.06035 0.10348 3.94156 0.10077 18.27676 0.46726 0.46439 0 2453566.50 4.04016 0.10283 3.92695 0.10111 18.13126 0.46685 0.46539 0 2453567.50 3.97820 0.10218 3.85361 0.09921 17.73802 0.45664 0.46610 0 2453568.50 3.94156 0.10077 3.86070 0.09973 17.73736 0.45820 0.46654 0 2453569.50 3.92695 0.10111 3.88168 0.09970 17.82164 0.45774 0.46670 0 2453570.50 3.85361 0.09921 3.90982 0.10032 17.96013 0.46084 0.46658 0 2453571.50 3.86070 0.09973 3.94389 0.10027 18.14774 0.46139 0.46618 0 2453572.50 3.88168 0.09970 3.94389 0.10027 18.20071 0.46274 0.46550 0 2453573.50 3.90982 0.10032 4.04456 0.10252 18.74230 0.47509 0.46454 0 2453574.50 3.94389 0.10027 4.11943 0.10276 19.19103 0.47873 0.46331 0 2453575.50 4.04456 0.10252 4.16971 0.10325 19.55243 0.48414 0.46180 0 2453576.50 4.11943 0.10276 4.22225 0.10319 19.95255 0.48765 0.46002 0 2453577.50 4.16971 0.10325 4.22225 0.10149 20.13195 0.48392 0.45796 0 2453578.50 4.22225 0.10319 4.30170 0.10336 20.72045 0.49786 0.45564 0 2453579.50 4.22225 0.10149 4.30170 0.10336 20.95789 0.50356 0.45305 0 2453580.50 4.30170 0.10336 4.36904 0.10438 21.55638 0.51501 0.45020 0 2453581.50 4.36904 0.10438 4.42305 0.10620 22.12731 0.53127 0.44709 0 2453582.50 4.42305 0.10620 4.46134 0.10750 22.65823 0.54596 0.44373 0 2453583.50 4.46134 0.10750 4.55021 0.10866 23.49003 0.56095 0.44012 0 2453584.50 4.55021 0.10866 4.51853 0.10823 23.73985 0.56864 0.43627 0 2453585.50 4.51853 0.10823 4.46171 0.10848 23.88624 0.58077 0.43219 0 2453586.50 4.46171 0.10848 4.46171 0.10848 24.36958 0.59253 0.42788 0 2453587.50 4.38855 0.10756 4.38855 0.10756 24.48495 0.60009 0.42336 0 2453588.50 4.25607 0.10597 4.25607 0.10597 24.28523 0.60468 0.41863 0 2453589.50 4.18861 0.10418 4.18861 0.10418 24.47229 0.60868 0.41371 0 2453590.50 4.13387 0.10402 4.13387 0.10402 24.75923 0.62299 0.40861 0 2453591.50 4.10604 0.10365 4.13387 0.10402 25.40983 0.63936 0.40335 0 2453592.50 4.02408 0.10194 4.10604 0.10365 25.92994 0.65458 0.39793 0 2453593.50 3.94267 0.10034 4.02408 0.10194 26.13492 0.66206 0.39239 0 2453594.50 3.93257 0.10047 3.94267 0.10034 26.35920 0.67081 0.38675 0 2453595.50 3.89110 0.10086 3.93257 0.10047 27.08804 0.69203 0.38102 0 2453596.50 3.86566 0.09978 3.93257 0.10047 27.92925 0.71352 0.37524 0 2453597.50 3.82162 0.10002 3.89110 0.10086 28.51031 0.73902 0.36943 0 2453598.50 3.81263 0.09988 3.86566 0.09978 29.23447 0.75458 0.36363 0 2453599.50 3.84364 0.10022 3.86566 0.09978 30.18227 0.77905 0.35788 0 2453600.50 3.90658 0.10089 3.82162 0.10002 30.80719 0.80630 0.35221 0 2453601.50 3.94046 0.10216 3.81263 0.09988 31.72601 0.83110 0.34666 0 2453602.50 4.01900 0.10327 3.84364 0.10022 32.99943 0.86042 0.34129 0 2453603.50 4.13105 0.10435 3.84364 0.10022 34.01948 0.88702 0.33613 0 2453604.50 4.17680 0.10490 3.90658 0.10089 35.60406 0.91948 0.33124 0 2453605.50 4.26115 0.10548 3.94046 0.10216 36.92344 0.95730 0.32668 0 2453606.50 4.27821 0.10479 3.94046 0.10216 37.88924 0.98234 0.32249 0 2453607.50 4.30776 0.10308 4.01900 0.10327 39.56277 1.01661 0.31872 0 2453608.50 4.35106 0.10547 4.13105 0.10435 41.51855 1.04876 0.31543 0 2453609.50 4.38164 0.10663 4.13105 0.10435 42.25721 1.06742 0.31267 0 2453610.50 4.40482 0.10794 4.17680 0.10490 43.33496 1.08838 0.31046 0 2453611.50 4.41339 0.10813 4.17680 0.10490 43.78857 1.09977 0.30885 0 2453612.50 4.38482 0.10744 4.26117 0.10548 44.96122 1.11296 0.30785 0 2453613.50 4.32366 0.10638 4.27625 0.10476 45.22449 1.10796 0.30750 0 2453614.50 4.26433 0.10467 4.27453 0.10474 45.12164 1.10565 0.30779 0 2453615.50 4.16445 0.10377 4.29823 0.10309 45.10008 1.08167 0.30871 0 2453616.50 4.08842 0.10302 4.29523 0.10309 44.61972 1.07092 0.31026 0 2453617.50 3.98163 0.10125 4.32941 0.10507 44.35859 1.07649 0.31241 0 2453618.50 3.95276 0.10100 4.35020 0.10600 43.80758 1.06744 0.31512 0 2453619.50 3.89581 0.09997 4.34535 0.10590 42.87307 1.04487 0.31836 0 2453620.50 3.82859 0.09973 4.35180 0.10673 41.95110 1.02890 0.32208 0 2453621.50 3.88107 0.10018 4.34587 0.10660 40.83510 1.00163 0.32623 0 2453622.50 3.89734 0.10162 4.33946 0.10659 39.66613 0.97435 0.33076 0 2453623.50 3.96285 0.10310 4.30344 0.10573 38.20705 0.93873 0.33561 0 2453624.50 4.02805 0.10496 4.29724 0.10560 37.01186 0.90956 0.34074 0 2453625.50 4.07435 0.10255 4.23950 0.10462 35.39344 0.87346 0.34610 0 2453626.50 4.12224 0.10490 4.16454 0.10305 33.68249 0.83346 0.35163 0 2453627.50 4.25087 0.10602 4.08347 0.10243 31.98860 0.80242 0.35729 0 2453628.50 4.22433 0.10701 4.07938 0.10237 30.95255 0.77670 0.36304 0 2453629.50 4.24451 0.10654 4.00641 0.10165 29.45097 0.74721 0.36883 0 2453630.50 4.24231 0.10533 3.92458 0.10042 27.96190 0.71547 0.37464 0 2453631.50 4.25876 0.10562 3.90397 0.10021 26.97540 0.69245 0.38043 0 2453632.50 4.26616 0.10550 3.90221 0.10018 26.16841 0.67184 0.38616 0 2453633.50 4.22255 0.10406 3.85656 0.09967 25.12112 0.64927 0.39181 0 2453634.50 4.20971 0.10314 3.82366 0.09960 24.21576 0.63075 0.39737 0 2453635.50 4.21393 0.10289 3.91106 0.10092 24.10643 0.62206 0.40279 0 2453636.50 4.21399 0.10327 3.91188 0.10094 23.49144 0.60619 0.40807 0 2453637.50 4.18812 0.10302 3.90841 0.10177 22.89269 0.59607 0.41319 0 2453638.50 4.16579 0.10299 3.95424 0.10217 22.61701 0.58436 0.41813 0 2453639.50 4.13380 0.10218 3.99396 0.10280 22.33401 0.57487 0.42288 0 2453640.50 4.09784 0.10167 4.02214 0.10130 22.01584 0.55448 0.42743 0 2453641.50 4.01203 0.10058 4.04991 0.10265 21.72542 0.55065 0.43176 0 2453642.50 3.97049 0.10057 4.04850 0.10261 21.31057 0.54009 0.43586 0 2453643.50 3.90970 0.10003 4.09607 0.10339 21.18285 0.53467 0.43974 0 2453644.50 3.86236 0.09952 4.10564 0.10393 20.88579 0.52869 0.44337 0 2453645.50 3.85459 0.09942 4.12032 0.10377 20.64388 0.51992 0.44676 0 2453646.50 3.82205 0.09942 4.11459 0.10307 20.32891 0.50923 0.44989 0 2453647.50 3.81960 0.09949 4.10573 0.10260 20.02815 0.50051 0.45277 0 2453648.50 3.93416 0.10150 4.10338 0.10256 19.78736 0.49455 0.45538 0 2453649.50 3.91594 0.10187 4.11360 0.10247 19.63347 0.48907 0.45773 0 2453650.50 3.94872 0.10157 4.06742 0.10122 19.23762 0.47876 0.45982 0 2453651.50 3.97337 0.10150 4.07276 0.10082 19.11202 0.47313 0.46163 0 2453652.50 3.99239 0.10059 4.10011 0.10112 19.11285 0.47139 0.46316 0 2453653.50 4.01099 0.10144 4.10875 0.10094 19.04913 0.46796 0.46443 0 2453654.50 4.02163 0.10212 4.06941 0.10043 18.78692 0.46363 0.46541 0 2453655.50 4.05166 0.10252 4.06599 0.10137 18.71418 0.46656 0.46612 0 2453656.50 4.06689 0.10258 4.06472 0.10135 18.67397 0.46561 0.46655 0 2453657.50 4.06261 0.10215 4.04180 0.10043 18.55672 0.46110 0.46670 0 2453658.50 4.04683 0.10144 3.99394 0.10038 18.34718 0.46113 0.46657 0 2453659.50 4.06114 0.10143 3.93963 0.09973 18.12946 0.45895 0.46616 0 2453660.50 4.01704 0.10030 3.92337 0.09961 18.10796 0.45976 0.46547 0 2453661.50 4.03080 0.10011 3.88017 0.09863 17.98310 0.45712 0.46451 0 2453662.50 4.06726 0.10061 3.82188 0.09886 17.80810 0.46063 0.46327 0 2453663.50 4.08016 0.10030 3.82140 0.09885 17.92309 0.46362 0.46175 0 2453664.50 4.03912 0.09976 3.80599 0.09845 17.99012 0.46534 0.45996 0 2453665.50 4.04212 0.10098 3.79526 0.09949 18.10137 0.47453 0.45789 0 2453666.50 4.02261 0.10007 3.82214 0.09910 18.41658 0.47748 0.45556 0 2453667.50 3.97380 0.10013 3.84092 0.09992 18.71987 0.48701 0.45297 0 2453668.50 3.92664 0.09958 3.87963 0.10030 19.14946 0.49506 0.45011 0 2453669.50 3.91557 0.09946 3.91402 0.10042 19.58947 0.50261 0.44699 0 2453670.50 3.87569 0.09842 3.91359 0.10041 19.88592 0.51020 0.44362 0 2453671.50 3.81630 0.09877 3.92931 0.10104 20.29522 0.52186 0.44001 0 2453672.50 3.80058 0.09834 3.95699 0.10115 20.80119 0.53171 0.43615 0 2453673.50 3.79263 0.09950 3.97967 0.10186 21.31829 0.54565 0.43206 0 2453674.50 3.82235 0.09906 4.01900 0.10149 21.96543 0.55466 0.42775 0 2453675.50 3.83416 0.09981 4.03447 0.10260 22.52453 0.57280 0.42322 0 2453676.50 3.87746 0.10020 4.03447 0.10260 23.03707 0.58583 0.41848 0 2453677.50 3.91239 0.10037 4.02022 0.10258 23.50595 0.59976 0.41356 0 2453678.50 3.92835 0.10103 4.00750 0.10133 24.02107 0.60736 0.40845 0 2453679.50 3.95667 0.10115 4.00585 0.10162 24.64295 0.62516 0.40318 0 2453680.50 3.97967 0.10186 3.98420 0.10091 25.18177 0.63778 0.39777 0 2453681.50 4.01900 0.10149 3.98420 0.10091 25.89856 0.65593 0.39222 0 2453682.50 4.03447 0.10260 3.95117 0.09999 26.43988 0.66909 0.38657 0 2453683.50 4.02022 0.10258 3.97667 0.10042 27.41721 0.69231 0.38085 0 2453684.50 4.00750 0.10133 3.96077 0.10001 28.15617 0.71093 0.37506 0 2453685.50 4.00585 0.10162 3.99007 0.10069 29.26362 0.73848 0.36925 0 2453686.50 3.98420 0.10091 3.99007 0.10069 30.20476 0.76223 0.36346 0 2453687.50 3.95117 0.09999 4.00933 0.10116 31.33475 0.79059 0.35770 0 2453688.50 3.97667 0.10042 4.01570 0.10227 32.40334 0.82522 0.35203 0 2453689.50 3.96077 0.10001 4.01570 0.10227 33.44810 0.85182 0.34649 0 2453690.50 3.99007 0.10069 4.02065 0.10154 34.55184 0.87258 0.34112 0 2453691.50 4.00933 0.10116 4.02132 0.10141 35.62476 0.89836 0.33598 0 2453692.50 4.01570 0.10227 4.02132 0.10141 36.68193 0.92502 0.33110 0 2453693.50 4.02065 0.10154 4.01068 0.10107 37.61230 0.94780 0.32655 0 2453694.50 4.02132 0.10141 4.00872 0.10187 38.57477 0.98024 0.32237 0 2453695.50 4.01068 0.10107 4.00872 0.10187 39.48841 1.00345 0.31862 0 2453696.50 4.00872 0.10187 3.99955 0.10088 40.22056 1.01443 0.31534 0 2453697.50 3.99955 0.10088 3.96572 0.10095 40.58582 1.03311 0.31259 0 2453698.50 3.96572 0.10095 3.96572 0.10095 41.16048 1.04774 0.31040 0 2453699.50 3.91104 0.10033 3.91104 0.10033 41.01297 1.05210 0.30881 0 2453700.50 3.90113 0.09952 3.91104 0.10033 41.27238 1.05876 0.30783 0 2453701.50 3.87422 0.09940 3.90113 0.09952 41.25752 1.05245 0.30750 0 2453702.50 3.91092 0.10047 3.87422 0.09940 40.89101 1.04917 0.30781 0 2453703.50 3.97306 0.10171 3.87422 0.09940 40.64098 1.04275 0.30875 0 2453704.50 4.01869 0.10239 3.91092 0.10047 40.61248 1.04336 0.31032 0 2453705.50 4.07857 0.10390 3.91092 0.10047 40.05161 1.02895 0.31249 0 2453706.50 4.14494 0.10506 3.97306 0.10171 39.98643 1.02364 0.31521 0 2453707.50 4.18414 0.10528 4.01869 0.10239 39.62347 1.00950 0.31847 0 2453708.50 4.19631 0.10464 4.01869 0.10239 38.71087 0.98625 0.32220 0 2453709.50 4.17264 0.10474 4.07857 0.10390 38.29220 0.97545 0.32636 0 2453710.50 4.15062 0.10404 4.14494 0.10506 37.85501 0.95949 0.33090 0 2453711.50 4.12964 0.10349 4.14494 0.10506 36.76616 0.93190 0.33576 0 2453712.50 4.06414 0.10199 4.18414 0.10528 36.00368 0.90594 0.34090 0 2453713.50 4.02744 0.10208 4.19631 0.10464 34.99907 0.87274 0.34626 0 2453714.50 3.99710 0.10114 4.19631 0.10464 33.90636 0.84549 0.35180 0 2453715.50 4.00621 0.10059 4.17264 0.10474 32.65511 0.81968 0.35746 0 2453716.50 4.03998 0.09967 4.15062 0.10404 31.46240 0.78865 0.36321 0 2453717.50 4.05423 0.10025 4.12964 0.10349 30.32755 0.76001 0.36901 0 2453718.50 4.04622 0.10009 4.12964 0.10349 29.39503 0.73665 0.37482 0 2453719.50 4.06383 0.10147 4.06414 0.10199 28.05605 0.70404 0.38060 0 2453720.50 4.07723 0.10095 4.02797 0.10208 26.98738 0.68396 0.38633 0 2453721.50 4.02634 0.10038 3.99700 0.10115 26.01317 0.65827 0.39199 0 2453722.50 4.00334 0.10046 3.99694 0.10115 25.29175 0.64003 0.39753 0 2453723.50 3.99392 0.10128 4.00383 0.10058 24.65815 0.61945 0.40296 0 2453724.50 3.98738 0.10085 4.03147 0.09966 24.19073 0.59798 0.40823 0 2453725.50 3.94829 0.10017 4.04461 0.10020 23.67280 0.58646 0.41335 0 2453726.50 3.90578 0.09947 4.03338 0.10012 23.05330 0.57224 0.41828 0 2453727.50 3.92841 0.10094 4.04835 0.10126 22.62294 0.56586 0.42302 0 2453728.50 3.90009 0.10094 4.04656 0.10124 22.13539 0.55378 0.42756 0 2453729.50 3.92756 0.10128 4.05474 0.10089 21.73831 0.54088 0.43189 0 2453730.50 4.01178 0.10217 4.01001 0.10037 21.09612 0.52802 0.43598 0 2453731.50 4.14806 0.10402 3.98929 0.10038 20.61983 0.51883 0.43985 0 2453732.50 4.22726 0.10467 3.98525 0.10107 20.26349 0.51390 0.44348 0 2453733.50 4.27020 0.10488 3.98272 0.10087 19.94554 0.50515 0.44686 0 2453734.50 4.25051 0.10499 3.98244 0.10087 19.66795 0.49816 0.44998 0 2453735.50 4.29436 0.10487 3.95103 0.10041 19.26634 0.48961 0.45285 0 2453736.50 4.26213 0.10490 3.91134 0.09993 18.85503 0.48170 0.45546 0 2453737.50 4.22249 0.10398 3.92793 0.10103 18.74172 0.48206 0.45780 0 2453738.50 4.15105 0.10347 3.90644 0.10089 18.47146 0.47704 0.45988 0 2453739.50 4.13032 0.10338 3.93105 0.10116 18.44297 0.47461 0.46168 0 2453740.50 4.09686 0.10285 4.00868 0.10228 18.68318 0.47669 0.46321 0 2453741.50 3.99319 0.10118 4.00856 0.10228 18.58188 0.47414 0.46446 0 2453742.50 3.96426 0.10042 4.13035 0.10388 19.06614 0.47953 0.46544 0 2453743.50 3.92187 0.09952 4.20397 0.10444 19.34782 0.48064 0.46614 0 2453744.50 3.94322 0.09967 4.24052 0.10443 19.48087 0.47975 0.46656 0 2453745.50 3.91887 0.10034 4.21627 0.10445 19.35773 0.47956 0.46670 0 2453746.50 3.92866 0.09966 4.24725 0.10428 19.51151 0.47907 0.46656 0 2453747.50 3.91740 0.10049 4.21544 0.10412 19.40008 0.47917 0.46614 0 2453748.50 3.91973 0.10029 4.17157 0.10320 19.25565 0.47638 0.46545 0 2453749.50 3.91838 0.09996 4.17008 0.10318 19.32954 0.47827 0.46447 0 2453750.50 3.94499 0.10008 4.10428 0.10260 19.12742 0.47815 0.46322 0 2453751.50 3.96273 0.10095 4.07478 0.10234 19.11567 0.48011 0.46170 0 2453752.50 3.96126 0.10130 4.02558 0.10145 19.03297 0.47966 0.45990 0 2453753.50 3.93080 0.10153 3.94247 0.10031 18.80903 0.47858 0.45783 0 2453754.50 3.92633 0.10133 3.91897 0.09937 18.88945 0.47894 0.45549 0 2453755.50 3.92615 0.10072 3.89091 0.09891 18.97050 0.48224 0.45288 0 2453756.50 3.94132 0.10082 3.89008 0.09889 19.20886 0.48832 0.45002 0 2453757.50 4.00004 0.10258 3.89053 0.09704 19.48055 0.48588 0.44689 0 2453758.50 4.08585 0.10355 3.88979 0.09917 19.77450 0.50417 0.44352 0 2453759.50 4.14824 0.10388 3.89469 0.09877 20.12690 0.51043 0.43989 0 2453760.50 4.17283 0.10341 3.88304 0.09903 20.42386 0.52090 0.43603 0 2453761.50 4.14176 0.10327 3.89322 0.09949 20.86768 0.53329 0.43193 0 2453762.50 4.14934 0.10307 3.89253 0.09947 21.28771 0.54400 0.42761 0 2453763.50 4.12273 0.10258 3.90297 0.09910 21.80500 0.55364 0.42308 0 2453764.50 4.07490 0.10172 3.90215 0.09933 22.29731 0.56758 0.41834 0 2453765.50 4.02304 0.10109 3.90077 0.09992 22.82451 0.58464 0.41340 0 2453766.50 3.98248 0.10062 3.88811 0.09984 23.32363 0.59893 0.40829 0 2453767.50 3.91227 0.09923 3.89176 0.10012 23.96057 0.61640 0.40302 0 2453768.50 3.86535 0.09899 3.89068 0.10008 24.61152 0.63307 0.39760 0 2453769.50 3.85312 0.09784 3.88440 0.10017 25.27197 0.65169 0.39205 0 2453770.50 3.84786 0.09806 3.88498 0.10024 26.02045 0.67137 0.38640 0 2453771.50 3.82370 0.09370 3.91553 0.10036 27.02070 0.69260 0.38067 0 2453772.50 3.85459 0.09777 3.91479 0.10035 27.85569 0.71405 0.37488 0 2453773.50 3.85551 0.09775 3.96999 0.10140 29.14450 0.74442 0.36908 0 2453774.50 3.84529 0.09744 4.03619 0.10260 30.58375 0.77748 0.36328 0 2453775.50 3.86554 0.09866 4.04297 0.10243 31.62860 0.80129 0.35753 0 2453776.50 3.88847 0.09829 4.03979 0.10238 32.62962 0.82694 0.35186 0 2453777.50 3.86401 0.09866 4.07165 0.10190 33.94699 0.84960 0.34633 0 2453778.50 3.84865 0.09905 4.06920 0.10146 35.00214 0.87273 0.34096 0 2453779.50 3.83012 0.09869 4.06694 0.10140 36.06192 0.89916 0.33582 0 2453780.50 3.86266 0.09907 4.03727 0.10121 36.85957 0.92406 0.33095 0 2453781.50 3.85703 0.09941 4.01257 0.10142 37.66093 0.95186 0.32641 0 2453782.50 3.85997 0.09995 4.00911 0.10138 38.60758 0.97628 0.32225 0 2453783.50 3.90101 0.10011 3.99283 0.10054 39.35843 0.99101 0.31851 0 2453784.50 3.95569 0.10084 3.93122 0.10018 39.55656 1.00807 0.31525 0 2453785.50 4.01466 0.10220 3.92837 0.10016 40.22298 1.02551 0.31251 0 2453786.50 4.00169 0.10185 3.91184 0.10030 40.61634 1.04138 0.31034 0 2453787.50 4.04016 0.10143 3.91202 0.09981 41.03363 1.04693 0.30877 0 2453788.50 4.04946 0.10097 3.91202 0.09981 41.28802 1.05342 0.30781 0 2453789.50 4.01527 0.10085 3.88541 0.09971 41.09132 1.05454 0.30750 0 2453790.50 3.99496 0.10123 3.88541 0.09971 41.00394 1.05229 0.30783 0 2453791.50 3.98542 0.10043 3.85991 0.09967 40.48064 1.04531 0.30879 0 2453792.50 3.92597 0.10013 3.86034 0.09946 40.07232 1.03241 0.31038 0 2453793.50 3.91184 0.10030 3.86034 0.09946 39.51452 1.01803 0.31256 0 2453794.50 3.91202 0.09981 3.85373 0.09941 38.76276 0.99992 0.31531 0 2453795.50 3.88541 0.09971 3.85373 0.09941 37.97134 0.97950 0.31858 0 2453796.50 3.85991 0.09967 3.84009 0.09927 36.96260 0.95554 0.32232 0 2453797.50 3.86034 0.09946 3.83814 0.09890 36.00530 0.92781 0.32650 0 2453798.50 3.85373 0.09941 3.83814 0.09890 35.02245 0.90249 0.33104 0 2453799.50 3.84009 0.09927 3.84853 0.09913 34.10580 0.87847 0.33592 0 2453800.50 3.83813 0.09890 3.82602 0.09853 32.89103 0.84703 0.34106 0 2453801.50 3.84853 0.09913 3.82602 0.09853 31.87987 0.82099 0.34643 0 2453802.50 3.82602 0.09853 3.79948 0.09793 30.66994 0.79047 0.35197 0 2453803.50 3.79948 0.09793 3.79067 0.09802 29.63674 0.76633 0.35764 0 2453804.50 3.79067 0.09802 3.78816 0.09848 28.68689 0.74574 0.36339 0 2453805.50 3.78816 0.09848 3.78816 0.09848 27.79293 0.72251 0.36919 0 2453806.50 3.79618 0.09786 3.79618 0.09786 26.99576 0.69591 0.37499 0 2453807.50 3.78584 0.09873 3.78584 0.09873 26.11063 0.68091 0.38078 0 2453808.50 3.80119 0.09925 3.80119 0.09925 25.44495 0.66439 0.38651 0 2453809.50 3.81685 0.09951 3.80119 0.09925 24.71712 0.64539 0.39216 0 2453810.50 3.81098 0.09929 3.81685 0.09951 24.13176 0.62914 0.39770 0 2453811.50 3.83722 0.09893 3.81098 0.09929 23.45134 0.61100 0.40312 0 2453812.50 3.85881 0.09967 3.83722 0.09893 23.00714 0.59317 0.40839 0 2453813.50 3.91948 0.10022 3.85881 0.09967 22.56850 0.58294 0.41350 0 2453814.50 3.94340 0.09972 3.85881 0.09967 22.03990 0.56929 0.41843 0 2453815.50 3.94248 0.09976 3.91948 0.10022 21.88808 0.55966 0.42317 0 2453816.50 3.94046 0.10105 3.94340 0.09972 21.55740 0.54513 0.42770 0 2453817.50 3.94291 0.10093 3.94248 0.09976 21.12383 0.53454 0.43201 0 2453818.50 3.91893 0.10093 3.94046 0.10105 20.71867 0.53133 0.43611 0 2453819.50 3.89875 0.10047 3.94291 0.10093 20.36947 0.52140 0.43997 0 2453820.50 3.84621 0.09836 3.94291 0.10093 20.03852 0.51293 0.44358 0 2453821.50 3.84297 0.09852 3.91893 0.10093 19.61734 0.50522 0.44696 0 2453822.50 3.83404 0.09839 3.89875 0.10047 19.24676 0.49601 0.45007 0 2453823.50 3.81960 0.09839 3.84621 0.09836 18.74825 0.47945 0.45294 0 2453824.50 3.85153 0.09898 3.84297 0.09852 18.51926 0.47478 0.45553 0 2453825.50 3.90175 0.09988 3.83404 0.09839 18.28832 0.46933 0.45787 0 2453826.50 3.95135 0.10113 3.83404 0.09839 18.12443 0.46512 0.45993 0 2453827.50 3.99686 0.10224 3.81960 0.09839 17.91613 0.46151 0.46173 0 2453828.50 4.00303 0.10191 3.85153 0.09898 17.94747 0.46121 0.46325 0 2453829.50 4.04891 0.10302 3.90175 0.09988 18.08410 0.46291 0.46450 0 2453830.50 4.02383 0.10180 3.95135 0.10113 18.23787 0.46678 0.46546 0 2453831.50 3.99007 0.10139 3.99686 0.10224 18.39328 0.47051 0.46615 0 2453832.50 3.98683 0.10151 4.00303 0.10191 18.38920 0.46817 0.46657 0 2453833.50 3.94903 0.10202 4.04891 0.10302 18.58936 0.47300 0.46670 0 2453834.50 3.93049 0.10124 4.04891 0.10302 18.60104 0.47330 0.46655 0 2453835.50 3.95796 0.10095 4.02383 0.10180 18.51962 0.46854 0.46613 0 2453836.50 3.94640 0.10053 3.99007 0.10139 18.41986 0.46805 0.46542 0 2453837.50 3.93728 0.10028 3.98683 0.10151 18.48284 0.47061 0.46444 0 2453838.50 3.95478 0.10208 3.94903 0.10202 18.40728 0.47556 0.46318 0 2453839.50 3.98982 0.10218 3.93049 0.10124 18.44289 0.47503 0.46165 0 2453840.50 3.99747 0.10080 3.95796 0.10095 18.71807 0.47740 0.45984 0 2453841.50 4.04108 0.10244 3.95796 0.10095 18.88848 0.48175 0.45776 0 2453842.50 4.06970 0.10193 3.94640 0.10053 19.02797 0.48470 0.45541 0 2453843.50 4.02034 0.10145 3.93728 0.10028 19.20374 0.48912 0.45280 0 2453844.50 4.02022 0.10170 3.95478 0.10208 19.53629 0.50425 0.44992 0 2453845.50 3.95410 0.10183 3.98982 0.10218 19.98667 0.51187 0.44679 0 2453846.50 3.90321 0.10070 3.99747 0.10080 20.33177 0.51270 0.44341 0 2453847.50 3.88890 0.10005 4.04108 0.10244 20.89432 0.52966 0.43978 0 2453848.50 3.90083 0.09925 4.04108 0.10244 21.26702 0.53910 0.43591 0 2453849.50 3.89019 0.10050 4.06970 0.10193 21.82665 0.54665 0.43181 0 2453850.50 3.91551 0.10109 4.02034 0.10145 22.00071 0.55519 0.42748 0 2453851.50 3.95759 0.10121 4.01928 0.10168 22.46989 0.56843 0.42293 0 2453852.50 4.08010 0.10376 3.95297 0.10178 22.60372 0.58198 0.41819 0 2453853.50 4.13637 0.10444 3.90040 0.10063 22.83936 0.58924 0.41325 0 2453854.50 4.20836 0.10526 3.89929 0.10060 23.40892 0.60393 0.40813 0 2453855.50 4.26360 0.10564 3.88140 0.09989 23.91624 0.61552 0.40285 0 2453856.50 4.27827 0.10562 3.89187 0.09910 24.63991 0.62741 0.39743 0 2453857.50 4.22268 0.10386 3.88290 0.10032 25.28436 0.65325 0.39188 0 2453858.50 4.17252 0.10266 3.88165 0.10029 26.02168 0.67231 0.38623 0 2453859.50 4.14267 0.10237 3.91005 0.10084 27.00795 0.69654 0.38049 0 2453860.50 4.10512 0.10135 3.95729 0.10123 28.18484 0.72097 0.37471 0 2453861.50 4.05001 0.10011 4.08004 0.10356 29.98127 0.76100 0.36890 0 2453862.50 4.02493 0.10088 4.08003 0.10354 30.94609 0.78531 0.36310 0 2453863.50 4.03533 0.10051 4.12979 0.10402 32.33950 0.81457 0.35735 0 2453864.50 4.02567 0.10194 4.19079 0.10468 33.88237 0.84630 0.35169 0 2453865.50 4.04346 0.10230 4.22961 0.10514 35.29797 0.87745 0.34616 0 2453866.50 4.04989 0.10218 4.22650 0.10510 36.38960 0.90486 0.34080 0 2453867.50 4.02181 0.10142 4.25088 0.10507 37.72744 0.93250 0.33567 0 2453868.50 3.98273 0.10044 4.20511 0.10382 38.42548 0.94867 0.33081 0 2453869.50 3.95838 0.10094 4.20372 0.10381 39.48730 0.97518 0.32628 0 2453870.50 3.95955 0.10059 4.16703 0.10266 40.15858 0.98935 0.32212 0 2453871.50 3.91869 0.09971 4.12781 0.10256 40.71641 1.01166 0.31840 0 2453872.50 3.90542 0.09943 4.12677 0.10257 41.54852 1.03273 0.31516 0 2453873.50 3.82859 0.09868 4.08938 0.10140 41.89180 1.03876 0.31244 0 2453874.50 3.77868 0.09770 4.08838 0.10140 42.46510 1.05326 0.31028 0 2453875.50 3.79440 0.09751 4.01232 0.10046 42.09616 1.05398 0.30873 0 2453876.50 3.81789 0.09870 3.98316 0.10069 42.04405 1.06282 0.30779 0 2453877.50 3.87538 0.09929 3.98087 0.10068 42.10070 1.06475 0.30750 0 2453878.50 3.95563 0.10132 3.96007 0.10018 41.78633 1.05712 0.30785 0 2453879.50 4.07973 0.10262 3.95637 0.10017 41.48169 1.05023 0.30883 0 2453880.50 4.10585 0.10252 3.95704 0.10095 41.06071 1.04747 0.31044 0 2453881.50 4.13442 0.10281 3.99239 0.10153 40.84635 1.03879 0.31264 0 2453882.50 4.13313 0.10371 3.99029 0.10150 40.11280 1.02035 0.31540 0 2453883.50 4.18965 0.10382 3.96915 0.10142 39.08212 0.99866 0.31868 0 2453884.50 4.17020 0.10374 3.95412 0.10156 38.03141 0.97681 0.32244 0 2453885.50 4.15839 0.10266 3.95183 0.10156 37.04139 0.95197 0.32663 0 2453886.50 4.10701 0.10283 3.96043 0.10107 36.10681 0.92144 0.33119 0 2453887.50 4.07203 0.10146 3.95977 0.10109 35.05945 0.89503 0.33607 0 2453888.50 3.97973 0.10076 3.95191 0.10150 33.94112 0.87177 0.34122 0 2453889.50 3.95129 0.10055 3.96241 0.10152 32.98438 0.84509 0.34660 0 2453890.50 3.91575 0.09999 3.95235 0.10146 31.87273 0.81817 0.35214 0 2453891.50 3.92633 0.10050 3.95312 0.10150 30.87653 0.79276 0.35781 0 2453892.50 3.97264 0.10124 3.88921 0.10084 29.42337 0.76291 0.36357 0 2453893.50 3.94633 0.10121 3.85551 0.10030 28.25974 0.73520 0.36937 0 2453894.50 3.93802 0.10159 3.85551 0.10030 27.39169 0.71261 0.37517 0 2453895.50 3.95686 0.10117 3.81067 0.09946 26.25754 0.68535 0.38096 0 2453896.50 3.95129 0.10156 3.79764 0.09946 25.39827 0.66520 0.38668 0 2453897.50 3.96260 0.10158 3.82394 0.09947 24.84332 0.64623 0.39233 0 2453898.50 3.95380 0.10153 3.84835 0.09932 24.31036 0.62744 0.39787 0 2453899.50 3.88921 0.10084 3.84835 0.09932 23.66208 0.61071 0.40328 0 2453900.50 3.85551 0.10030 3.88719 0.10009 23.28861 0.59967 0.40855 0 2453901.50 3.81067 0.09946 3.91037 0.09985 22.85305 0.58355 0.41365 0 2453902.50 3.79764 0.09946 3.90615 0.10010 22.29450 0.57132 0.41858 0 2453903.50 3.82394 0.09947 3.90909 0.10024 21.81537 0.55943 0.42331 0 2453904.50 3.84835 0.09932 3.90909 0.10024 21.35628 0.54766 0.42783 0 2453905.50 3.88719 0.10009 3.92438 0.09952 21.01429 0.53288 0.43214 0 2453906.50 3.91037 0.09985 3.90236 0.09923 20.50686 0.52143 0.43623 0 2453907.50 3.90615 0.10010 3.91973 0.09849 20.23917 0.50855 0.44008 0 2453908.50 3.90909 0.10024 3.93123 0.09785 19.96951 0.49703 0.44369 0 2453909.50 3.92438 0.09952 3.91208 0.09766 19.57434 0.48863 0.44705 0 2453910.50 3.90236 0.09923 3.91208 0.09766 19.30473 0.48190 0.45017 0 2453911.50 3.91973 0.09849 3.92175 0.09694 19.10940 0.47236 0.45302 0 2453912.50 3.93123 0.09785 3.96707 0.09953 19.11097 0.47950 0.45561 0 2453913.50 3.91208 0.09766 3.97227 0.09997 18.94212 0.47674 0.45794 0 2453914.50 3.92175 0.09694 4.03747 0.10158 19.08121 0.48009 0.45999 0 2453915.50 3.96707 0.09953 4.05362 0.10243 19.00962 0.48033 0.46178 0 2453916.50 3.97227 0.09997 4.08934 0.10321 19.05213 0.48084 0.46329 0 2453917.50 4.03747 0.10158 4.08934 0.10321 18.95080 0.47828 0.46453 0 2453918.50 4.05362 0.10243 4.07765 0.10318 18.81879 0.47619 0.46549 0 2453919.50 4.08934 0.10321 4.05961 0.10319 18.68073 0.47483 0.46617 0 2453920.50 4.07765 0.10318 4.04041 0.10203 18.56022 0.46870 0.46657 0 2453921.50 4.05961 0.10319 4.07551 0.10231 18.71153 0.46971 0.46670 0 2453922.50 4.04041 0.10203 4.07619 0.10198 18.72707 0.46852 0.46654 0 2453923.50 4.07551 0.10231 3.98383 0.10160 18.33688 0.46764 0.46611 0 2453924.50 4.07619 0.10198 3.98383 0.10160 18.39312 0.46907 0.46540 0 2453925.50 3.98383 0.10160 3.94572 0.10074 18.29501 0.46711 0.46441 0 2453926.50 3.94572 0.10074 3.91141 0.09998 18.23532 0.46612 0.46314 0 2453927.50 3.91141 0.09998 3.87349 0.09924 18.17945 0.46576 0.46159 0 2453928.50 3.87349 0.09924 3.85214 0.09846 18.22238 0.46578 0.45978 0 2453929.50 3.85214 0.09846 3.87801 0.09867 18.51247 0.47101 0.45769 0 2453930.50 3.87801 0.09867 3.89808 0.10001 18.80127 0.48236 0.45534 0 2453931.50 3.89808 0.10001 3.89808 0.10001 19.01958 0.48796 0.45271 0 2453932.50 3.90695 0.09995 3.90694 0.09995 19.30792 0.49394 0.44983 0 2453933.50 3.88749 0.09980 3.88749 0.09980 19.48278 0.50015 0.44669 0 2453934.50 3.88077 0.09956 3.88077 0.09956 19.74779 0.50663 0.44330 0 2453935.50 3.89704 0.09997 3.89704 0.09997 20.16010 0.51716 0.43966 0 2453936.50 3.89080 0.09959 3.89080 0.09959 20.48763 0.52443 0.43579 0 2453937.50 3.90921 0.09975 3.90921 0.09975 20.97844 0.53531 0.43168 0 2453938.50 3.90774 0.09981 3.90921 0.09975 21.40616 0.54622 0.42734 0 2453939.50 3.94156 0.10035 3.90774 0.09981 21.86106 0.55837 0.42279 0 2453940.50 3.94560 0.10019 3.94156 0.10035 22.55452 0.57422 0.41804 0 2453941.50 3.95728 0.09993 3.94560 0.10019 23.12130 0.58713 0.41310 0 2453942.50 3.99820 0.10125 3.95728 0.09993 23.77568 0.60038 0.40797 0 2453943.50 3.99569 0.10158 3.95728 0.09993 24.40374 0.61624 0.40269 0 2453944.50 4.02958 0.10127 3.99820 0.10125 25.33455 0.64157 0.39726 0 2453945.50 3.99722 0.10100 3.99569 0.10158 26.04169 0.66207 0.39171 0 2453946.50 4.03692 0.10154 4.02958 0.10127 27.03782 0.67950 0.38605 0 2453947.50 4.01918 0.10181 3.99722 0.10100 27.63576 0.69829 0.38032 0 2453948.50 4.00157 0.10186 3.99722 0.10100 28.49632 0.72003 0.37453 0 2453949.50 3.98866 0.10141 4.03692 0.10154 29.69307 0.74685 0.36872 0 2453950.50 3.94181 0.10078 4.01918 0.10181 30.51433 0.77299 0.36293 0 2453951.50 3.90854 0.10005 4.01918 0.10181 31.50419 0.79807 0.35718 0 2453952.50 3.87679 0.09994 4.00157 0.10186 32.38411 0.82434 0.35152 0 2453953.50 3.81190 0.09873 3.98866 0.10141 33.31932 0.84716 0.34599 0 2453954.50 3.77887 0.09932 3.94181 0.10078 33.97052 0.86849 0.34064 0 2453955.50 3.77091 0.09862 3.94181 0.10078 35.01629 0.89523 0.33552 0 2453956.50 3.84388 0.09893 3.90854 0.10005 35.74654 0.91507 0.33067 0 2453957.50 3.84199 0.09986 3.87679 0.09994 36.44608 0.93957 0.32615 0 2453958.50 3.87257 0.10049 3.87679 0.09994 37.38952 0.96389 0.32200 0 2453959.50 3.90964 0.10057 3.81190 0.09873 37.62551 0.97449 0.31829 0 2453960.50 3.90603 0.10046 3.77887 0.09932 38.06783 1.00052 0.31507 0 2453961.50 3.91343 0.10040 3.77887 0.09932 38.72935 1.01790 0.31236 0 2453962.50 3.96426 0.10073 3.77161 0.09861 39.18915 1.02463 0.31023 0 2453963.50 3.94585 0.10091 3.77263 0.09860 39.59114 1.03470 0.30869 0 2453964.50 4.01300 0.10171 3.84595 0.09891 40.60062 1.04422 0.30778 0 2453965.50 3.99398 0.10187 3.85383 0.09982 40.75683 1.05566 0.30750 0 2453966.50 4.00004 0.10068 3.85707 0.09981 40.69395 1.05302 0.30787 0 2453967.50 4.00212 0.09961 3.89962 0.10071 40.87602 1.05562 0.30887 0 2453968.50 3.98554 0.09923 3.90433 0.10075 40.49849 1.04501 0.31049 0 2453969.50 3.98004 0.09927 3.94818 0.10106 40.37429 1.03340 0.31271 0 2453970.50 3.98340 0.09809 3.95025 0.10130 39.68676 1.01768 0.31549 0 2453971.50 3.99362 0.09953 3.95505 0.10139 38.91681 0.99762 0.31879 0 2453972.50 4.01649 0.10055 3.97326 0.10145 38.18653 0.97502 0.32257 0 2453973.50 3.99722 0.10091 3.97832 0.10154 37.25905 0.95096 0.32676 0 2453974.50 4.01013 0.10183 4.01196 0.10187 36.54454 0.92793 0.33133 0 2453975.50 4.01099 0.10197 4.00421 0.10159 35.42043 0.89863 0.33623 0 2453976.50 3.97924 0.10107 4.00778 0.10163 34.38838 0.87202 0.34139 0 2453977.50 3.92786 0.09995 4.03141 0.10196 33.52632 0.84794 0.34677 0 2453978.50 3.88707 0.10112 4.01702 0.10179 32.36266 0.82008 0.35231 0 2453979.50 3.84590 0.09980 4.00470 0.10076 31.24880 0.78625 0.35799 0 2453980.50 3.81012 0.09898 4.00490 0.10077 30.26909 0.76159 0.36374 0 2453981.50 3.74394 0.09779 3.96862 0.09977 29.06084 0.73060 0.36954 0 2453982.50 3.80419 0.09812 3.94662 0.09928 28.01248 0.70467 0.37535 0 2453983.50 3.86890 0.09874 3.96648 0.09950 27.30580 0.68494 0.38113 0 2453984.50 3.94627 0.09948 3.96605 0.09950 26.50066 0.66487 0.38686 0 2453985.50 4.02671 0.10174 3.95820 0.09879 25.69308 0.64123 0.39250 0 2453986.50 4.07282 0.10262 3.99633 0.09937 25.22389 0.62721 0.39804 0 2453987.50 4.07239 0.10360 3.98441 0.10013 24.47876 0.61516 0.40345 0 2453988.50 4.09876 0.10365 3.98364 0.10012 23.84789 0.59936 0.40871 0 2453989.50 4.09093 0.10376 4.00228 0.10097 23.37284 0.58968 0.41381 0 2453990.50 4.09099 0.10259 3.98732 0.10121 22.74172 0.57726 0.41873 0 2453991.50 4.05386 0.10227 3.96937 0.10046 22.13698 0.56026 0.42345 0 2453992.50 4.04267 0.10170 3.90276 0.09968 21.30822 0.54425 0.42797 0 2453993.50 4.00946 0.10084 3.90958 0.09941 20.92260 0.53202 0.43227 0 2453994.50 3.93967 0.09992 3.90926 0.09940 20.53169 0.52208 0.43635 0 2453995.50 3.91551 0.09932 3.84293 0.09941 19.83235 0.51303 0.44019 0 2453996.50 3.95643 0.09967 3.81378 0.09932 19.36358 0.50428 0.44380 0 2453997.50 3.94205 0.09923 3.77745 0.09881 18.89233 0.49421 0.44715 0 2453998.50 3.99796 0.09928 3.82500 0.09859 18.86735 0.48631 0.45026 0 2453999.50 3.96652 0.09990 3.85019 0.09914 18.75382 0.48290 0.45310 0 2454000.50 4.00475 0.10101 3.85083 0.09916 18.54487 0.47751 0.45569 0 2454001.50 3.97692 0.10093 3.93853 0.09944 18.77572 0.47406 0.45800 0 2454002.50 3.95160 0.09982 3.97615 0.10039 18.78660 0.47432 0.46005 0 2454003.50 3.87214 0.09913 4.01139 0.10113 18.80751 0.47416 0.46183 0 2454004.50 3.90272 0.09921 4.03817 0.10152 18.81031 0.47288 0.46333 0 2454005.50 3.82841 0.09885 4.07076 0.10249 18.86197 0.47491 0.46456 0 2454006.50 3.80388 0.09917 4.06769 0.10242 18.77080 0.47265 0.46551 0 2454007.50 3.76804 0.09877 4.06988 0.10185 18.72668 0.46863 0.46619 0 2454008.50 3.84682 0.09881 4.06964 0.10183 18.69388 0.46773 0.46658 0 2454009.50 3.86174 0.09940 4.05070 0.10189 18.59763 0.46782 0.46670 0 2454010.50 3.95367 0.09959 4.04451 0.10106 18.58229 0.46431 0.46653 0 2454011.50 3.98218 0.10057 3.97588 0.10062 18.30168 0.46317 0.46609 0 2454012.50 4.00854 0.10102 3.93975 0.09988 18.19165 0.46121 0.46537 0 2454013.50 4.03221 0.10133 3.90541 0.09945 18.11081 0.46118 0.46437 0 2454014.50 4.07050 0.10232 3.86830 0.09868 18.03769 0.46016 0.46309 0 2454015.50 4.06322 0.10225 3.86778 0.09868 18.15670 0.46322 0.46154 0 2454016.50 4.06713 0.10160 3.85585 0.09804 18.24468 0.46390 0.45972 0 2454017.50 4.04646 0.10182 3.85403 0.09752 18.40347 0.46566 0.45762 0 2454018.50 4.04365 0.10095 3.82284 0.09793 18.44458 0.47251 0.45526 0 2454019.50 3.97049 0.10053 3.84382 0.09741 18.76187 0.47548 0.45263 0 2454020.50 3.93496 0.09982 3.82596 0.09821 18.91548 0.48554 0.44974 0 2454021.50 3.90346 0.09942 3.84933 0.09851 19.30016 0.49392 0.44659 0 2454022.50 3.86615 0.09865 3.84933 0.09851 19.59734 0.50152 0.44319 0 2454023.50 3.85355 0.09800 3.83728 0.09886 19.86138 0.51171 0.43955 0 2454024.50 3.85300 0.09750 3.84951 0.09919 20.28164 0.52258 0.43566 0 2454025.50 3.82272 0.09793 3.85936 0.09925 20.72337 0.53295 0.43155 0 2454026.50 3.84382 0.09741 3.88609 0.09921 21.29314 0.54362 0.42721 0 2454027.50 3.82596 0.09821 3.82810 0.09846 21.43002 0.55117 0.42265 0 2454028.50 3.84933 0.09851 3.82810 0.09846 21.92087 0.56380 0.41789 0 2454029.50 3.83728 0.09886 3.84193 0.09852 22.53061 0.57774 0.41294 0 2454030.50 3.84951 0.09919 3.76706 0.09772 22.65053 0.58758 0.40781 0 2454031.50 3.85936 0.09925 3.75544 0.09807 23.17792 0.60527 0.40253 0 2454032.50 3.88609 0.09921 3.81862 0.09856 24.21718 0.62507 0.39709 0 2454033.50 3.82810 0.09846 3.81862 0.09856 24.90950 0.64294 0.39154 0 2454034.50 3.84193 0.09852 3.81324 0.09879 25.60940 0.66348 0.38588 0 2454035.50 3.76706 0.09772 3.87587 0.09894 26.82169 0.68466 0.38014 0 2454036.50 3.75544 0.09807 3.88113 0.09973 27.69501 0.71167 0.37435 0 2454037.50 3.81862 0.09856 3.88113 0.09973 28.57479 0.73427 0.36854 0 2454038.50 3.81324 0.09879 3.95104 0.10121 30.02632 0.76916 0.36275 0 2454039.50 3.87587 0.09894 4.01037 0.10193 31.46598 0.79973 0.35700 0 2454040.50 3.88113 0.09973 4.02444 0.10137 32.60107 0.82116 0.35135 0 2454041.50 3.95104 0.10121 4.02444 0.10137 33.65068 0.84759 0.34582 0 2454042.50 4.01037 0.10193 4.05068 0.10173 34.94174 0.87753 0.34048 0 2454043.50 4.02444 0.10137 4.03680 0.10141 35.89283 0.90171 0.33536 0 2454044.50 4.05068 0.10173 4.03680 0.10141 36.95171 0.92831 0.33052 0 2454045.50 4.03680 0.10141 3.99716 0.10091 37.60833 0.94942 0.32601 0 2454046.50 3.99716 0.10091 3.95111 0.09936 38.13475 0.95896 0.32188 0 2454047.50 3.95111 0.09936 3.95111 0.09936 39.02567 0.98137 0.31819 0 2454048.50 3.93685 0.09967 3.93685 0.09967 39.68228 1.00460 0.31498 0 2454049.50 3.95251 0.10061 3.95251 0.10061 40.52826 1.03166 0.31229 0 2454050.50 3.96273 0.09939 3.95251 0.10061 41.08372 1.04580 0.31017 0 2454051.50 4.01502 0.09967 3.96273 0.09939 41.59618 1.04329 0.30865 0 2454052.50 4.07282 0.10044 3.96273 0.09939 41.83834 1.04936 0.30776 0 2454053.50 4.08701 0.10151 4.01502 0.09967 42.46114 1.05410 0.30750 0 2454054.50 4.05912 0.10118 4.07282 0.10044 42.96435 1.05956 0.30789 0 2454055.50 4.06769 0.10134 4.07282 0.10044 42.68033 1.05256 0.30891 0 2454056.50 4.06187 0.10135 4.08701 0.10151 42.37720 1.05255 0.31055 0 2454057.50 4.03319 0.10067 4.08701 0.10151 41.77340 1.03756 0.31279 0 2454058.50 4.03918 0.10079 4.05912 0.10118 40.75642 1.01596 0.31559 0 2454059.50 4.00163 0.10038 4.06769 0.10134 39.99776 0.99650 0.31890 0 2454060.50 3.95918 0.09926 4.06769 0.10134 39.06437 0.97324 0.32269 0 2454061.50 3.86713 0.09821 4.06187 0.10135 38.01020 0.94839 0.32690 0 2454062.50 3.82511 0.09782 4.03319 0.10067 36.70568 0.91620 0.33148 0 2454063.50 3.79177 0.09830 4.03319 0.10067 35.64400 0.88970 0.33638 0 2454064.50 3.79355 0.09738 4.03918 0.10079 34.62495 0.86400 0.34155 0 2454065.50 3.83795 0.09847 4.00163 0.10038 33.24648 0.83400 0.34693 0 2454066.50 3.89526 0.09901 4.00163 0.10038 32.20713 0.80793 0.35249 0 2454067.50 3.97178 0.10077 3.95918 0.09926 30.86334 0.77376 0.35816 0 2454068.50 3.99961 0.10019 3.86585 0.09820 29.18967 0.74149 0.36392 0 2454069.50 3.99826 0.10111 3.82216 0.09781 27.96140 0.71553 0.36972 0 2454070.50 3.98823 0.10098 3.82047 0.09780 27.09138 0.69353 0.37553 0 2454071.50 3.97594 0.10077 3.78892 0.09824 26.05933 0.67567 0.38131 0 2454072.50 3.99839 0.10166 3.78987 0.09736 25.30064 0.64994 0.38703 0 2454073.50 3.94303 0.10065 3.83073 0.09848 24.84399 0.63870 0.39267 0 2454074.50 3.92841 0.10041 3.82962 0.09848 24.15125 0.62108 0.39821 0 2454075.50 3.94548 0.10142 3.88346 0.09904 23.83924 0.60795 0.40361 0 2454076.50 4.02389 0.10362 3.95253 0.10052 23.64330 0.60128 0.40887 0 2454077.50 4.00652 0.10179 3.98080 0.10011 23.23017 0.58423 0.41396 0 2454078.50 4.01594 0.10133 3.98562 0.10090 22.71599 0.57508 0.41887 0 2454079.50 4.09931 0.10128 3.98467 0.10088 22.20742 0.56225 0.42359 0 2454080.50 4.09711 0.10225 3.96712 0.10065 21.64597 0.54920 0.42810 0 2454081.50 4.11937 0.10199 3.96293 0.10054 21.19551 0.53776 0.43240 0 2454082.50 4.07527 0.10218 3.97099 0.10110 20.84432 0.53071 0.43647 0 2454083.50 4.05509 0.10335 3.92513 0.10026 20.24605 0.51717 0.44031 0 2454084.50 4.02548 0.10143 3.92075 0.10019 19.89713 0.50843 0.44390 0 2454085.50 3.93581 0.09904 3.94271 0.10108 19.71014 0.50533 0.44725 0 2454086.50 3.86499 0.09921 3.94260 0.10107 19.43956 0.49833 0.45035 0 2454087.50 3.79764 0.09904 4.01134 0.10255 19.53162 0.49930 0.45319 0 2454088.50 3.77098 0.09728 4.00537 0.10129 19.28278 0.48765 0.45576 0 2454089.50 3.73642 0.09749 4.02038 0.10099 19.16034 0.48131 0.45807 0 2454090.50 3.75140 0.09745 4.08025 0.10097 19.27354 0.47694 0.46011 0 2454091.50 3.75195 0.09711 4.08360 0.10160 19.14189 0.47623 0.46188 0 2454092.50 3.76939 0.09858 4.10164 0.10164 19.10252 0.47335 0.46338 0 2454093.50 3.80927 0.09921 4.10111 0.10163 18.99989 0.47082 0.46460 0 2454094.50 3.84547 0.09912 4.07099 0.10170 18.78399 0.46927 0.46554 0 2454095.50 3.88701 0.09973 4.04573 0.10215 18.61425 0.47000 0.46620 0 2454096.50 3.92847 0.09994 3.99434 0.10071 18.34739 0.46260 0.46659 0 2454097.50 3.88676 0.09941 3.91270 0.09875 17.96415 0.45340 0.46670 0 2454098.50 3.91704 0.09975 3.84592 0.09885 17.67057 0.45420 0.46652 0 2454099.50 3.88101 0.09929 3.80143 0.09886 17.49999 0.45512 0.46607 0 2454100.50 3.87012 0.09909 3.80152 0.09886 17.55537 0.45652 0.46534 0 2454101.50 3.89863 0.09955 3.79389 0.09816 17.59630 0.45525 0.46434 0 2454102.50 3.93520 0.10017 3.77213 0.09836 17.59258 0.45872 0.46305 0 2454103.50 3.98083 0.09993 3.78443 0.09804 17.76945 0.46032 0.46149 0 2454104.50 4.00273 0.10014 3.79053 0.09778 17.94030 0.46278 0.45966 0 2454105.50 4.03013 0.10024 3.80362 0.09869 18.16818 0.47142 0.45755 0 2454106.50 4.04041 0.10033 3.82981 0.09908 18.48443 0.47820 0.45518 0 2454107.50 4.05668 0.10028 3.89535 0.09974 19.02050 0.48700 0.45255 0 2454108.50 4.06787 0.10097 3.89647 0.09975 19.27199 0.49337 0.44965 0 2454109.50 4.06353 0.10088 3.91696 0.09982 19.64809 0.50070 0.44649 0 2454110.50 4.03013 0.10017 3.92834 0.09970 20.00938 0.50785 0.44309 0 2454111.50 3.94456 0.09955 3.90071 0.09982 20.20034 0.51692 0.43943 0 2454112.50 3.87728 0.09831 3.90525 0.09955 20.58693 0.52481 0.43554 0 2454113.50 3.81789 0.09833 3.84699 0.09894 20.66939 0.53161 0.43142 0 2454114.50 3.80676 0.09861 3.84622 0.09894 21.08816 0.54245 0.42707 0 2454115.50 3.82364 0.09929 3.82780 0.09868 21.44280 0.55281 0.42251 0 2454116.50 3.81660 0.09944 3.85122 0.09918 22.06899 0.56831 0.41774 0 2454117.50 3.82388 0.09874 3.87666 0.09972 22.75135 0.58523 0.41279 0 2454118.50 3.83471 0.09854 3.94625 0.10026 23.74653 0.60329 0.40765 0 2454119.50 3.84119 0.09883 3.97667 0.09992 24.56338 0.61717 0.40236 0 2454120.50 3.85141 0.09894 3.97604 0.09991 25.23690 0.63416 0.39692 0 2454121.50 3.94554 0.10036 3.98429 0.10086 26.01303 0.65850 0.39136 0 2454122.50 3.94450 0.09990 3.99888 0.10113 26.88050 0.67979 0.38570 0 2454123.50 3.92823 0.09950 3.98929 0.10039 27.63224 0.69538 0.37996 0 2454124.50 3.91239 0.10016 3.98756 0.10040 28.48149 0.71708 0.37417 0 2454125.50 3.89587 0.09940 3.99287 0.10037 29.42583 0.73966 0.36836 0 2454126.50 3.82125 0.09868 3.97673 0.10051 30.25103 0.76457 0.36257 0 2454127.50 3.79905 0.09840 3.96789 0.10010 31.16318 0.78619 0.35683 0 2454128.50 3.82083 0.09894 3.96620 0.10010 32.16061 0.81169 0.35118 0 2454129.50 3.84132 0.09945 3.92603 0.09954 32.85950 0.83314 0.34566 0 2454130.50 3.92664 0.10044 3.90041 0.09920 33.67724 0.85649 0.34032 0 2454131.50 3.96285 0.09980 3.90107 0.09922 34.71761 0.88302 0.33521 0 2454132.50 3.96328 0.10114 3.87136 0.09938 35.46814 0.91049 0.33038 0 2454133.50 3.98132 0.10147 3.81732 0.09853 35.94545 0.92784 0.32588 0 2454134.50 3.96315 0.10043 3.81762 0.09853 36.87392 0.95171 0.32176 0 2454135.50 3.96897 0.10017 3.81887 0.09831 37.74471 0.97164 0.31808 0 2454136.50 3.95202 0.10040 3.81728 0.09918 38.49907 1.00028 0.31488 0 2454137.50 3.95227 0.10009 3.81728 0.09918 39.16003 1.01745 0.31222 0 2454138.50 3.92260 0.09954 3.82131 0.09814 39.73426 1.02042 0.31012 0 2454139.50 3.90395 0.09933 3.82131 0.09814 40.12135 1.03036 0.30862 0 2454140.50 3.87618 0.09948 3.84168 0.09832 40.56495 1.03817 0.30774 0 2454141.50 3.81795 0.09853 3.83165 0.09796 40.52127 1.03602 0.30750 0 2454142.50 3.81887 0.09831 3.83165 0.09796 40.41446 1.03329 0.30791 0 2454143.50 3.81728 0.09918 3.85208 0.09815 40.35633 1.02825 0.30895 0 2454144.50 3.82131 0.09814 3.85208 0.09815 39.92585 1.01729 0.31061 0 2454145.50 3.84168 0.09832 3.89025 0.09921 39.74254 1.01355 0.31287 0 2454146.50 3.83165 0.09796 3.88939 0.09971 39.02893 1.00052 0.31568 0 2454147.50 3.85208 0.09815 3.88939 0.09971 38.21838 0.97974 0.31901 0 2454148.50 3.89025 0.09921 3.87080 0.09968 37.14520 0.95655 0.32281 0 2454149.50 3.88939 0.09971 3.88064 0.10019 36.28428 0.93674 0.32703 0 2454150.50 3.87080 0.09968 3.88064 0.10019 35.28637 0.91098 0.33163 0 2454151.50 3.88064 0.10019 3.85324 0.09957 34.02240 0.87914 0.33654 0 2454152.50 3.85324 0.09957 3.82113 0.09909 32.72469 0.84860 0.34171 0 2454153.50 3.82113 0.09909 3.82113 0.09909 31.71616 0.82245 0.34710 0 2454154.50 3.84535 0.09855 3.84535 0.09855 30.91910 0.79240 0.35266 0 2454155.50 3.86762 0.09904 3.86762 0.09904 30.12004 0.77132 0.35834 0 2454156.50 3.87214 0.09885 3.87214 0.09885 29.20873 0.74562 0.36410 0 2454157.50 3.87012 0.09894 3.87214 0.09885 28.29978 0.72241 0.36990 0 2454158.50 3.86419 0.09909 3.87012 0.09894 27.41756 0.70096 0.37571 0 2454159.50 3.86217 0.09890 3.86419 0.09909 26.55246 0.68088 0.38148 0 2454160.50 3.87661 0.09845 3.86217 0.09890 25.76010 0.65963 0.38721 0 2454161.50 3.85936 0.09804 3.86217 0.09890 25.02603 0.64083 0.39284 0 2454162.50 3.87269 0.09879 3.87661 0.09845 24.42701 0.62035 0.39837 0 2454163.50 3.84914 0.09859 3.85936 0.09804 23.67212 0.60137 0.40377 0 2454164.50 3.85459 0.09831 3.87269 0.09879 23.14776 0.59050 0.40903 0 2454165.50 3.82920 0.09816 3.84914 0.09859 22.44524 0.57489 0.41411 0 2454166.50 3.76688 0.09754 3.84914 0.09859 21.92268 0.56151 0.41902 0 2454167.50 3.78786 0.09690 3.85459 0.09831 21.46811 0.54755 0.42373 0 2454168.50 3.77599 0.09697 3.82920 0.09816 20.88027 0.53523 0.42824 0 2454169.50 3.76370 0.09815 3.76688 0.09754 20.13500 0.52137 0.43253 0 2454170.50 3.74596 0.09763 3.78786 0.09690 19.87197 0.50836 0.43659 0 2454171.50 3.73501 0.09764 3.78786 0.09690 19.52789 0.49956 0.44042 0 2454172.50 3.76095 0.09753 3.77599 0.09697 19.15334 0.49188 0.44401 0 2454173.50 3.77783 0.09689 3.76370 0.09815 18.80691 0.49044 0.44735 0 2454174.50 3.73886 0.09788 3.74596 0.09763 18.46255 0.48118 0.45044 0 2454175.50 3.73948 0.09764 3.73501 0.09764 18.17948 0.47526 0.45327 0 2454176.50 3.72406 0.09835 3.76095 0.09753 18.10010 0.46938 0.45584 0 2454177.50 3.72406 0.09819 3.77783 0.09689 17.99914 0.46161 0.45814 0 2454178.50 3.76309 0.09871 3.77783 0.09689 17.84049 0.45754 0.46017 0 2454179.50 3.77012 0.09806 3.73886 0.09788 17.52214 0.45871 0.46193 0 2454180.50 3.77813 0.09816 3.73948 0.09764 17.41271 0.45467 0.46342 0 2454181.50 3.80755 0.09868 3.72406 0.09835 17.25062 0.45556 0.46463 0 2454182.50 3.81960 0.09913 3.72406 0.09819 17.18143 0.45300 0.46556 0 2454183.50 3.83667 0.09929 3.76309 0.09871 17.31261 0.45412 0.46622 0 2454184.50 3.88046 0.09860 3.77012 0.09806 17.31690 0.45039 0.46660 0 2454185.50 3.87330 0.09907 3.77813 0.09816 17.34638 0.45069 0.46670 0 2454186.50 3.87942 0.09902 3.77813 0.09816 17.35983 0.45104 0.46652 0 2454187.50 3.89520 0.09885 3.80755 0.09868 17.52957 0.45432 0.46606 0 2454188.50 3.91159 0.09915 3.81960 0.09913 17.64091 0.45785 0.46532 0 2454189.50 3.89135 0.09904 3.83667 0.09929 17.79739 0.46059 0.46430 0 2454190.50 3.89875 0.09902 3.88046 0.09860 18.10122 0.45995 0.46301 0 2454191.50 3.89190 0.09863 3.87330 0.09907 18.19084 0.46527 0.46144 0 2454192.50 3.86664 0.09703 3.87942 0.09902 18.36585 0.46876 0.45960 0 2454193.50 3.83122 0.09701 3.87942 0.09902 18.53582 0.47310 0.45749 0 2454194.50 3.82229 0.09772 3.89520 0.09885 18.80639 0.47723 0.45511 0 2454195.50 3.79899 0.09800 3.91159 0.09915 19.10698 0.48430 0.45246 0 2454196.50 3.81208 0.09759 3.89135 0.09904 19.25463 0.49007 0.44955 0 2454197.50 3.75838 0.09747 3.89839 0.09902 19.56378 0.49694 0.44639 0 2454198.50 3.74101 0.09787 3.89211 0.09867 19.83450 0.50282 0.44298 0 2454199.50 3.72737 0.09740 3.86899 0.09714 20.04661 0.50332 0.43932 0 2454200.50 3.73654 0.09813 3.86984 0.09718 20.41176 0.51258 0.43542 0 2454201.50 3.73152 0.09722 3.83777 0.09724 20.63226 0.52279 0.43129 0 2454202.50 3.74523 0.09802 3.82935 0.09796 21.00911 0.53742 0.42693 0 2454203.50 3.74945 0.09846 3.80771 0.09825 21.34470 0.55076 0.42236 0 2454204.50 3.76290 0.09799 3.82117 0.09792 21.91242 0.56153 0.41759 0 2454205.50 3.74046 0.09782 3.77617 0.09784 22.17817 0.57462 0.41263 0 2454206.50 3.77306 0.09808 3.77848 0.09789 22.75486 0.58949 0.40749 0 2454207.50 3.75330 0.09811 3.75930 0.09822 23.23975 0.60720 0.40220 0 2454208.50 3.75385 0.09810 3.74393 0.09792 23.78390 0.62205 0.39676 0 2454209.50 3.78816 0.09791 3.75089 0.09838 24.51073 0.64291 0.39119 0 2454210.50 3.74767 0.09770 3.75228 0.09841 25.24576 0.66211 0.38553 0 2454211.50 3.78994 0.09730 3.74094 0.09759 25.93616 0.67661 0.37978 0 2454212.50 3.77832 0.09812 3.74176 0.09787 26.75129 0.69968 0.37399 0 2454213.50 3.76131 0.09760 3.75126 0.09833 27.67205 0.72534 0.36819 0 2454214.50 3.79104 0.09732 3.75141 0.09832 28.56490 0.74864 0.36239 0 2454215.50 3.81728 0.09797 3.77004 0.09830 29.63833 0.77280 0.35665 0 2454216.50 3.83979 0.09886 3.75969 0.09822 30.51587 0.79723 0.35100 0 2454217.50 3.86499 0.09961 3.78123 0.09856 31.67806 0.82573 0.34549 0 2454218.50 3.90126 0.10007 3.78181 0.09860 32.68395 0.85212 0.34016 0 2454219.50 3.93477 0.10019 3.78414 0.09853 33.70771 0.87766 0.33506 0 2454220.50 3.94071 0.10097 3.78940 0.09827 34.74731 0.90114 0.33024 0 2454221.50 3.91906 0.10093 3.79169 0.09829 35.73308 0.92625 0.32575 0 2454222.50 3.89979 0.10093 3.80329 0.09813 36.76277 0.94849 0.32164 0 2454223.50 3.90260 0.10089 3.79259 0.09810 37.50983 0.97020 0.31798 0 2454224.50 3.91318 0.10070 3.79523 0.09812 38.29855 0.99015 0.31479 0 2454225.50 3.86688 0.10031 3.82594 0.09797 39.26721 1.00546 0.31214 0 2454226.50 3.83000 0.10063 3.82790 0.09800 39.81687 1.01939 0.31006 0 2454227.50 3.81709 0.09956 3.80001 0.09794 39.90700 1.02852 0.30858 0 2454228.50 3.77562 0.09895 3.80868 0.09792 40.22082 1.03401 0.30772 0 2454229.50 3.73030 0.09734 3.81095 0.09793 40.30164 1.03563 0.30751 0 2454230.50 3.75666 0.09795 3.82079 0.09748 40.29398 1.02798 0.30793 0 2454231.50 3.78725 0.09905 3.82208 0.09748 40.03125 1.02100 0.30899 0 2454232.50 3.80144 0.09909 3.82743 0.09816 39.65495 1.01697 0.31067 0 2454233.50 3.79722 0.09952 3.83412 0.09663 39.14957 0.98666 0.31295 0 2454234.50 3.83300 0.09919 3.83391 0.09655 38.44912 0.96823 0.31577 0 2454235.50 3.83998 0.09852 3.83116 0.09635 37.62028 0.94613 0.31912 1 2454236.50 3.82056 0.09838 3.83005 0.09625 36.72610 0.92289 0.32293 1 2454237.50 3.83840 0.09851 3.84889 0.09595 35.95755 0.89638 0.32717 1 2454238.50 3.85494 0.09850 3.86108 0.09567 35.07753 0.86914 0.33177 1 2454239.50 3.81360 0.09782 3.85908 0.09555 34.04256 0.84286 0.33669 1 2454240.50 3.83468 0.09809 3.77384 0.09492 32.28903 0.81217 0.34187 1 2454241.50 3.83308 0.09754 3.75942 0.09557 31.17371 0.79251 0.34727 1 2454242.50 3.83048 0.09821 3.79251 0.09660 30.46436 0.77601 0.35283 1 2454243.50 3.83269 0.09607 3.79251 0.09660 29.50619 0.75160 0.35851 0 2454244.50 3.82553 0.09581 3.82339 0.09637 28.81292 0.72623 0.36428 0 2454245.50 3.84388 0.09555 3.83612 0.09787 28.00950 0.71457 0.37008 0 2454246.50 3.85630 0.09538 3.83612 0.09787 27.15095 0.69267 0.37588 0 2454247.50 3.77202 0.09486 3.83092 0.09870 26.29950 0.67759 0.38166 0 2454248.50 3.75942 0.09557 3.83765 0.09892 25.57349 0.65921 0.38738 0 2454249.50 3.79251 0.09660 3.86486 0.09949 25.02166 0.64410 0.39301 0 2454250.50 3.82339 0.09637 3.90591 0.10089 24.59093 0.63522 0.39854 0 2454251.50 3.83612 0.09787 3.90591 0.10089 23.93825 0.61836 0.40394 0 2454252.50 3.83092 0.09870 3.91655 0.10116 23.39176 0.60421 0.40919 0 2454253.50 3.83765 0.09892 3.94432 0.10145 22.98320 0.59116 0.41427 0 2454254.50 3.86486 0.09949 3.97967 0.10227 22.65014 0.58209 0.41917 0 2454255.50 3.90591 0.10089 4.00970 0.10265 22.31713 0.57132 0.42387 0 2454256.50 3.91655 0.10116 4.00970 0.10265 21.85074 0.55938 0.42837 0 2454257.50 3.94432 0.10145 4.00352 0.10259 21.38728 0.54805 0.43266 0 2454258.50 3.97967 0.10227 3.99906 0.10160 20.96837 0.53274 0.43671 0 2454259.50 4.00970 0.10265 3.95820 0.10105 20.39555 0.52070 0.44054 0 2454260.50 4.00352 0.10259 3.91386 0.10039 19.84316 0.50897 0.44412 0 2454261.50 3.99906 0.10160 3.87214 0.09976 19.34029 0.49830 0.44745 0 2454262.50 3.95820 0.10105 3.87214 0.09976 19.07679 0.49151 0.45053 0 2454263.50 3.91386 0.10039 3.83092 0.09866 18.63949 0.48004 0.45335 0 2454264.50 3.87214 0.09976 3.75006 0.09678 18.04180 0.46563 0.45591 0 2454265.50 3.83092 0.09866 3.75587 0.09730 17.88934 0.46345 0.45820 0 2454266.50 3.75006 0.09678 3.75361 0.09753 17.72164 0.46047 0.46023 0 2454267.50 3.75587 0.09730 3.75581 0.09698 17.59776 0.45439 0.46198 0 2454268.50 3.75361 0.09753 3.74743 0.09705 17.44663 0.45184 0.46346 0 2454269.50 3.75581 0.09698 3.74743 0.09705 17.35640 0.44950 0.46466 0 2454270.50 3.74743 0.09705 3.75807 0.09735 17.33652 0.44911 0.46559 0 2454271.50 3.75807 0.09735 3.76046 0.09746 17.29934 0.44834 0.46624 0 2454272.50 3.76046 0.09746 3.73942 0.09723 17.17534 0.44658 0.46660 0 2454273.50 3.73942 0.09723 3.72259 0.09668 17.09149 0.44387 0.46669 0 2454274.50 3.72260 0.09668 3.72113 0.09645 17.09863 0.44318 0.46651 0 2454275.50 3.72113 0.09645 3.72730 0.09703 17.16147 0.44676 0.46604 0 2454276.50 3.72730 0.09703 3.70706 0.09709 17.12312 0.44847 0.46529 0 2454277.50 3.70706 0.09709 3.70706 0.09709 17.19880 0.45045 0.46426 0 2454278.50 3.73073 0.09794 3.73073 0.09794 17.40607 0.45694 0.46296 0 2454279.50 3.77385 0.09783 3.77385 0.09783 17.72779 0.45958 0.46139 0 2454280.50 3.81196 0.09912 3.81196 0.09912 18.05122 0.46938 0.45954 0 2454281.50 3.87104 0.09940 3.87104 0.09940 18.50135 0.47506 0.45742 0 2454282.50 3.87514 0.10021 3.87514 0.10021 18.71587 0.48399 0.45503 0 2454283.50 3.85392 0.09939 3.85392 0.09939 18.83233 0.48568 0.45238 0 2454284.50 3.87000 0.09993 3.85392 0.09939 19.07731 0.49199 0.44946 0 2454285.50 3.86896 0.09969 3.87000 0.09993 19.43009 0.50171 0.44629 0 2454286.50 3.88438 0.09911 3.86896 0.09969 19.72622 0.50829 0.44287 0 2454287.50 3.85544 0.09942 3.88438 0.09911 20.13695 0.51382 0.43920 0 2454288.50 3.85911 0.09939 3.85544 0.09942 20.34735 0.52471 0.43529 0 2454289.50 3.82413 0.09923 3.85911 0.09939 20.75955 0.53466 0.43116 0 2454290.50 3.79049 0.09839 3.85911 0.09939 21.18599 0.54564 0.42680 0 2454291.50 3.80927 0.09928 3.82413 0.09923 21.45131 0.55660 0.42222 0 2454292.50 3.79348 0.09957 3.79049 0.09839 21.75201 0.56463 0.41744 0 2454293.50 3.78015 0.09773 3.80926 0.09928 22.38938 0.58352 0.41248 0 2454294.50 3.80064 0.09839 3.79348 0.09957 22.86318 0.60013 0.40733 0 2454295.50 3.88077 0.10017 3.79348 0.09957 23.47027 0.61607 0.40203 0 2454296.50 3.88976 0.09904 3.78015 0.09773 24.03441 0.62140 0.39659 0 2454297.50 3.93317 0.09932 3.80064 0.09839 24.85774 0.64348 0.39102 1 2454298.50 3.86256 0.09770 3.88077 0.10017 26.13392 0.67454 0.38535 1 2454299.50 3.81764 0.09701 3.88976 0.09904 26.99307 0.68726 0.37961 0 2454300.50 3.80504 0.09676 3.88976 0.09904 27.83586 0.70872 0.37382 0 2454301.50 3.75868 0.09578 3.93317 0.09932 29.04200 0.73338 0.36801 0 2454302.50 3.71434 0.09481 3.86256 0.09770 29.44000 0.74465 0.36222 0 2454303.50 3.69892 0.09508 3.81764 0.09701 30.04199 0.76336 0.35648 0 2454304.50 3.71073 0.09534 3.81764 0.09701 31.01654 0.78812 0.35083 0 2454305.50 3.69843 0.09603 3.80504 0.09676 31.90831 0.81137 0.34532 0 2454306.50 3.67348 0.09561 3.75868 0.09578 32.51469 0.82852 0.34000 0 2454307.50 3.72052 0.09726 3.75868 0.09578 33.51136 0.85392 0.33491 0 2454308.50 3.75611 0.09729 3.71434 0.09481 34.08850 0.87014 0.33009 0 2454309.50 3.78033 0.09810 3.69892 0.09508 34.88707 0.89677 0.32562 0 2454310.50 3.79079 0.09821 3.69892 0.09508 35.78048 0.91974 0.32152 0 2454311.50 3.81275 0.09831 3.71095 0.09536 36.72665 0.94379 0.31787 0 2454312.50 3.81740 0.09890 3.71165 0.09542 37.47642 0.96347 0.31471 0 2454313.50 3.81238 0.09835 3.69944 0.09611 37.98656 0.98683 0.31207 0 2454314.50 3.82076 0.09852 3.67887 0.09580 38.28012 0.99684 0.31001 0 2454315.50 3.80352 0.09873 3.68055 0.09586 38.66138 1.00694 0.30854 0 2454316.50 3.79428 0.09838 3.71977 0.09721 39.28608 1.02663 0.30771 0 2454317.50 3.79948 0.09833 3.75683 0.09741 39.72833 1.03015 0.30751 0 2454318.50 3.78535 0.09871 3.75694 0.09743 39.61473 1.02738 0.30796 0 2454319.50 3.77385 0.09850 3.77838 0.09821 39.56266 1.02836 0.30904 0 2454320.50 3.75660 0.09806 3.77815 0.09823 39.12894 1.01730 0.31074 0 2454321.50 3.78682 0.09806 3.79961 0.09854 38.77776 1.00571 0.31302 0 2454322.50 3.74107 0.09834 3.82078 0.09868 38.29441 0.98900 0.31587 0 2454323.50 3.76076 0.09725 3.82145 0.09871 37.49910 0.96859 0.31923 0 2454324.50 3.75018 0.09815 3.82343 0.09893 36.63450 0.94790 0.32306 0 2454325.50 3.77887 0.09837 3.82384 0.09893 35.69386 0.92348 0.32731 0 2454326.50 3.81954 0.09845 3.81036 0.09863 34.58625 0.89528 0.33192 0 2454327.50 3.80205 0.09796 3.81457 0.09857 33.61899 0.86876 0.33685 0 2454328.50 3.77465 0.09802 3.81426 0.09858 32.60382 0.84262 0.34204 0 2454329.50 3.74278 0.09710 3.79738 0.09873 31.45804 0.81789 0.34744 0 2454330.50 3.71348 0.09699 3.78438 0.09859 30.36938 0.79116 0.35300 0 2454331.50 3.73458 0.09738 3.80347 0.09942 29.56251 0.77277 0.35869 0 2454332.50 3.71311 0.09718 3.80362 0.09946 28.63597 0.74882 0.36445 0 2454333.50 3.72810 0.09757 3.78659 0.09881 27.62129 0.72080 0.37026 0 2454334.50 3.71587 0.09695 3.77157 0.09822 26.66887 0.69451 0.37606 0 2454335.50 3.75984 0.09792 3.73035 0.09764 25.58547 0.66968 0.38184 0 2454336.50 3.77263 0.09856 3.72963 0.09763 24.83138 0.64999 0.38755 0 2454337.50 3.81887 0.09928 3.71940 0.09665 24.05897 0.62515 0.39319 0 2454338.50 3.83612 0.09937 3.70947 0.09754 23.33460 0.61355 0.39871 0 2454339.50 3.83245 0.09898 3.71218 0.09704 22.73261 0.59423 0.40410 0 2454340.50 3.80792 0.09897 3.71114 0.09703 22.14783 0.57908 0.40934 0 2454341.50 3.80786 0.09863 3.71133 0.09707 21.60966 0.56521 0.41442 0 2454342.50 3.79189 0.09873 3.71943 0.09725 21.15414 0.55312 0.41932 0 2454343.50 3.77630 0.09876 3.72993 0.09725 20.74615 0.54092 0.42402 0 2454344.50 3.80645 0.10024 3.72389 0.09683 20.28047 0.52735 0.42851 0 2454345.50 3.78737 0.09888 3.69863 0.09650 19.74686 0.51522 0.43278 0 2454346.50 3.77024 0.09806 3.69743 0.09648 19.37611 0.50558 0.43683 0 2454347.50 3.71630 0.09741 3.68543 0.09608 18.98027 0.49482 0.44065 0 2454348.50 3.68859 0.09600 3.71322 0.09668 18.81698 0.48991 0.44422 0 2454349.50 3.69611 0.09720 3.70406 0.09696 18.49267 0.48408 0.44755 0 2454350.50 3.69317 0.09695 3.70159 0.09714 18.22920 0.47840 0.45062 0 2454351.50 3.69831 0.09671 3.68835 0.09660 17.93930 0.46986 0.45343 0 2454352.50 3.70100 0.09691 3.68784 0.09659 17.73670 0.46456 0.45598 0 2454353.50 3.70425 0.09691 3.71504 0.09708 17.68979 0.46227 0.45827 0 2454354.50 3.70321 0.09653 3.72827 0.09705 17.59761 0.45809 0.46029 0 2454355.50 3.68009 0.09613 3.72409 0.09773 17.44542 0.45783 0.46203 0 2454356.50 3.67360 0.09587 3.75572 0.09778 17.48216 0.45513 0.46350 0 2454357.50 3.71318 0.09662 3.76173 0.09834 17.42022 0.45540 0.46469 0 2454358.50 3.69880 0.09689 3.75422 0.09814 17.31696 0.45268 0.46561 0 2454359.50 3.69978 0.09714 3.73925 0.09790 17.20063 0.45035 0.46625 0 2454360.50 3.68272 0.09647 3.73851 0.09789 17.17068 0.44961 0.46661 0 2454361.50 3.71495 0.09710 3.74726 0.09722 17.20488 0.44638 0.46669 0 2454362.50 3.72510 0.09697 3.75306 0.09768 17.24611 0.44885 0.46650 0 2454363.50 3.71984 0.09766 3.75874 0.09738 17.30762 0.44840 0.46602 0 2454364.50 3.75098 0.09766 3.72406 0.09779 17.20367 0.45174 0.46526 0 2454365.50 3.75703 0.09827 3.71685 0.09723 17.24687 0.45116 0.46423 0 2454366.50 3.75018 0.09810 3.70889 0.09769 17.30750 0.45586 0.46292 0 2454367.50 3.73648 0.09786 3.70889 0.09769 17.42663 0.45900 0.46133 0 2454368.50 3.74614 0.09720 3.71837 0.09804 17.61275 0.46440 0.45948 0 2454369.50 3.75275 0.09767 3.72773 0.09775 17.82181 0.46735 0.45735 0 2454370.50 3.75874 0.09738 3.74003 0.09949 18.06946 0.48067 0.45495 0 2454371.50 3.72406 0.09779 3.68663 0.09718 18.02169 0.47507 0.45229 0 2454372.50 3.71685 0.09723 3.68070 0.09651 18.22743 0.47792 0.44937 0 2454373.50 3.70889 0.09769 3.66186 0.09630 18.39341 0.48373 0.44619 0 2454374.50 3.71837 0.09804 3.66186 0.09630 18.67946 0.49125 0.44276 0 2454375.50 3.72773 0.09775 3.69097 0.09659 19.14447 0.50101 0.43909 0 2454376.50 3.74003 0.09949 3.69580 0.09655 19.51590 0.50981 0.43517 0 2454377.50 3.68663 0.09718 3.71972 0.09654 20.02181 0.51963 0.43103 0 2454378.50 3.68070 0.09651 3.72229 0.09653 20.44798 0.53029 0.42666 0 2454379.50 3.66186 0.09630 3.69642 0.09628 20.74901 0.54046 0.42208 0 2454380.50 3.69097 0.09659 3.69642 0.09628 21.22737 0.55292 0.41729 0 2454381.50 3.69580 0.09655 3.71880 0.09706 21.87412 0.57094 0.41232 0 2454382.50 3.71972 0.09654 3.72492 0.09708 22.46761 0.58558 0.40717 0 2454383.50 3.72229 0.09653 3.71819 0.09659 23.02332 0.59810 0.40187 0 2454384.50 3.69642 0.09628 3.72431 0.09666 23.69955 0.61508 0.39642 0 2454385.50 3.71880 0.09706 3.72431 0.09666 24.37997 0.63274 0.39085 0 2454386.50 3.72492 0.09708 3.71611 0.09677 25.04785 0.65226 0.38518 0 2454387.50 3.71819 0.09659 3.70284 0.09392 25.71991 0.65235 0.37943 0 2454388.50 3.72431 0.09666 3.72682 0.09705 26.69522 0.69518 0.37364 0 2454389.50 3.71611 0.09677 3.72682 0.09705 27.54493 0.71731 0.36783 0 2454390.50 3.70284 0.09392 3.72608 0.09680 28.42751 0.73853 0.36204 0 2454391.50 3.72682 0.09705 3.73966 0.09704 29.45716 0.76437 0.35630 0 2454392.50 3.72608 0.09680 3.72394 0.09712 30.28478 0.78986 0.35066 0 2454393.50 3.73966 0.09704 3.72394 0.09712 31.25826 0.81524 0.34516 0 2454394.50 3.72394 0.09712 3.74779 0.09749 32.45101 0.84409 0.33984 0 2454395.50 3.74779 0.09749 3.76559 0.09844 33.60346 0.87850 0.33475 0 2454396.50 3.76559 0.09844 3.76559 0.09844 34.58877 0.90426 0.32995 0 2454397.50 3.74731 0.09773 3.74731 0.09773 35.37193 0.92255 0.32548 0 2454398.50 3.73807 0.09785 3.73807 0.09785 36.18586 0.94719 0.32141 0 2454399.50 3.71789 0.09679 3.73807 0.09785 37.01936 0.96901 0.31777 0 2454400.50 3.69507 0.09698 3.71789 0.09679 37.56060 0.97783 0.31462 0 2454401.50 3.69703 0.09632 3.69507 0.09698 37.95922 0.99626 0.31200 0 2454402.50 3.70143 0.09699 3.69507 0.09698 38.46210 1.00946 0.30995 0 2454403.50 3.69525 0.09678 3.69703 0.09632 38.84333 1.01202 0.30851 0 2454404.50 3.67947 0.09725 3.69703 0.09632 39.04985 1.01740 0.30769 0 2454405.50 3.67684 0.09652 3.70143 0.09699 39.14149 1.02566 0.30751 0 2454406.50 3.67226 0.09636 3.69525 0.09678 38.95825 1.02028 0.30798 0 2454407.50 3.67788 0.09631 3.69525 0.09678 38.68150 1.01304 0.30908 0 2454408.50 3.68070 0.09706 3.67947 0.09725 38.09195 1.00677 0.31080 0 2454409.50 3.67262 0.09572 3.67947 0.09725 37.53269 0.99199 0.31310 0 2454410.50 3.67372 0.09643 3.67684 0.09652 36.82951 0.96680 0.31597 0 2454411.50 3.68626 0.09708 3.67226 0.09636 36.01009 0.94492 0.31934 0 2454412.50 3.68761 0.09677 3.67226 0.09636 35.15901 0.92259 0.32318 0 2454413.50 3.69354 0.09618 3.67788 0.09631 34.30290 0.89826 0.32744 0 2454414.50 3.67048 0.09628 3.68070 0.09706 33.37984 0.88021 0.33206 0 2454415.50 3.69923 0.09689 3.68070 0.09706 32.40918 0.85461 0.33700 0 2454416.50 3.67428 0.09706 3.67279 0.09572 31.36476 0.81744 0.34220 0 2454417.50 3.68021 0.09720 3.67512 0.09641 30.41567 0.79789 0.34761 0 2454418.50 3.68180 0.09674 3.67618 0.09639 29.47224 0.77276 0.35318 0 2454419.50 3.68198 0.09680 3.68803 0.09698 28.63720 0.75303 0.35887 0 2454420.50 3.66938 0.09714 3.69221 0.09664 27.77021 0.72687 0.36463 0 2454421.50 3.70162 0.09722 3.69888 0.09613 26.95554 0.70054 0.37043 0 2454422.50 3.70614 0.09817 3.69977 0.09612 26.13648 0.67902 0.37624 0 2454423.50 3.70290 0.09836 3.68360 0.09622 25.24150 0.65936 0.38201 0 2454424.50 3.70504 0.09754 3.71030 0.09686 24.68054 0.64428 0.38773 0 2454425.50 3.67495 0.09628 3.70009 0.09736 23.91320 0.62924 0.39336 0 2454426.50 3.64614 0.09647 3.70235 0.09739 23.27025 0.61212 0.39888 0 2454427.50 3.67470 0.09682 3.70913 0.09741 22.69560 0.59601 0.40426 0 2454428.50 3.66412 0.09643 3.70720 0.09709 22.10719 0.57896 0.40950 0 2454429.50 3.68902 0.09728 3.70039 0.09760 21.53005 0.56789 0.41457 0 2454430.50 3.67428 0.09721 3.71400 0.09778 21.10843 0.55575 0.41946 0 2454431.50 3.68015 0.09674 3.71633 0.09782 20.65678 0.54370 0.42416 0 2454432.50 3.68125 0.09619 3.74546 0.09808 20.38517 0.53381 0.42864 0 2454433.50 3.71024 0.09667 3.74857 0.09894 20.00169 0.52793 0.43291 0 2454434.50 3.70162 0.09606 3.74974 0.09891 19.63939 0.51804 0.43695 0 2454435.50 3.69550 0.09593 3.73601 0.09832 19.23090 0.50612 0.44076 0 2454436.50 3.70125 0.09534 3.69405 0.09696 18.71092 0.49112 0.44433 0 2454437.50 3.72131 0.09557 3.69471 0.09698 18.43788 0.48399 0.44765 0 2454438.50 3.71042 0.09563 3.65519 0.09633 17.99353 0.47420 0.45071 0 2454439.50 3.73666 0.09542 3.67661 0.09675 17.87573 0.47042 0.45352 0 2454440.50 3.74046 0.09569 3.66571 0.09651 17.62454 0.46404 0.45606 0 2454441.50 3.75734 0.09592 3.67678 0.09697 17.50258 0.46161 0.45834 0 2454442.50 3.76492 0.09671 3.66907 0.09710 17.31384 0.45818 0.46034 0 2454443.50 3.81342 0.09870 3.67200 0.09687 17.19772 0.45370 0.46208 0 2454444.50 3.81324 0.09816 3.67179 0.09688 17.08847 0.45086 0.46354 0 2454445.50 3.79104 0.09822 3.67113 0.09626 16.99828 0.44573 0.46473 0 2454446.50 3.75648 0.10007 3.68073 0.09725 16.97627 0.44856 0.46564 0 2454447.50 3.84021 0.09959 3.69664 0.09656 17.00352 0.44414 0.46627 0 2454448.50 3.85385 0.10020 3.69755 0.09652 16.98204 0.44331 0.46662 0 2454449.50 3.84719 0.10074 3.70227 0.09597 16.99841 0.44065 0.46669 0 2454450.50 3.85239 0.10011 3.70186 0.09606 17.01160 0.44145 0.46648 0 2454451.50 3.80021 0.09996 3.69196 0.09600 17.00150 0.44209 0.46600 0 2454452.50 3.73159 0.09829 3.69158 0.09601 17.05565 0.44358 0.46523 0 2454453.50 3.67128 0.09609 3.71410 0.09620 17.23682 0.44644 0.46419 0 2454454.50 3.67984 0.09665 3.73657 0.09658 17.43999 0.45077 0.46287 0 2454455.50 3.66828 0.09664 3.77870 0.09742 17.75869 0.45785 0.46128 0 2454456.50 3.65788 0.09649 3.79288 0.09803 17.97046 0.46445 0.45941 0 2454457.50 3.66137 0.09693 3.84602 0.09928 18.39290 0.47478 0.45728 0 2454458.50 3.66045 0.09706 3.86535 0.09940 18.68131 0.48040 0.45487 0 2454459.50 3.65796 0.09636 3.86636 0.09942 18.90742 0.48621 0.45220 1 2454460.50 3.64387 0.09798 3.86011 0.09901 19.12389 0.49052 0.44927 1 2454461.50 3.69067 0.09716 3.82553 0.09960 19.22426 0.50052 0.44609 0 2454462.50 3.69990 0.09721 3.85371 0.09961 19.66778 0.50839 0.44265 0 2454463.50 3.70339 0.09668 3.84434 0.09978 19.95053 0.51779 0.43897 0 2454464.50 3.68119 0.09659 3.84119 0.09991 20.29513 0.52787 0.43505 0 2454465.50 3.67311 0.09638 3.83848 0.09944 20.67357 0.53556 0.43090 0 2454466.50 3.69287 0.09693 3.83820 0.09943 21.09830 0.54653 0.42652 0 2454467.50 3.73305 0.09738 3.80782 0.09951 21.38890 0.55896 0.42193 0 2454468.50 3.79722 0.09872 3.77782 0.09798 21.71044 0.56308 0.41714 0 2454469.50 3.81612 0.09912 3.70517 0.09715 21.81033 0.57189 0.41217 0 2454470.50 3.87196 0.09974 3.66256 0.09660 22.10891 0.58311 0.40701 0 2454471.50 3.90505 0.10034 3.66220 0.09660 22.69522 0.59863 0.40170 0 2454472.50 3.90817 0.09956 3.64218 0.09608 23.19671 0.61191 0.39625 0 2454473.50 3.87135 0.09929 3.66299 0.09668 23.99977 0.63347 0.39067 0 2454474.50 3.86223 0.09963 3.66803 0.09729 24.74627 0.65634 0.38500 0 2454475.50 3.83862 0.09952 3.66104 0.09690 25.45332 0.67367 0.37925 0 2454476.50 3.83777 0.09944 3.66105 0.09689 26.24917 0.69470 0.37346 0 2454477.50 3.83098 0.09907 3.64942 0.09663 26.99903 0.71486 0.36765 0 2454478.50 3.81147 0.09930 3.65665 0.09632 27.92508 0.73561 0.36186 0 2454479.50 3.79862 0.09784 3.64542 0.09793 28.74302 0.77212 0.35613 0 2454480.50 3.71941 0.09760 3.64430 0.09795 29.66602 0.79731 0.35049 0 2454481.50 3.65580 0.09658 3.66272 0.09627 30.77399 0.80883 0.34499 0 2454482.50 3.63348 0.09589 3.66613 0.09592 31.77371 0.83129 0.33968 0 2454483.50 3.66455 0.09674 3.66516 0.09590 32.73687 0.85654 0.33460 0 2454484.50 3.66987 0.09739 3.66291 0.09557 33.67463 0.87865 0.32981 0 2454485.50 3.66119 0.09685 3.66816 0.09513 34.65274 0.89865 0.32535 0 2454486.50 3.64779 0.09668 3.66816 0.09513 35.53526 0.92154 0.32129 0 2454487.50 3.65874 0.09605 3.68547 0.09557 36.52234 0.94705 0.31766 0 2454488.50 3.63929 0.09803 3.69654 0.09581 37.36594 0.96848 0.31453 0 2454489.50 3.65972 0.09619 3.69654 0.09581 37.99170 0.98470 0.31193 0 2454490.50 3.66412 0.09588 3.70981 0.09630 38.62884 1.00269 0.30990 0 2454491.50 3.66290 0.09557 3.70981 0.09630 38.98635 1.01197 0.30847 0 2454492.50 3.66816 0.09513 3.74835 0.09687 39.59575 1.02326 0.30768 0 2454493.50 3.68547 0.09557 3.76981 0.09701 39.86338 1.02584 0.30752 0 2454494.50 3.69654 0.09581 3.76981 0.09701 39.73804 1.02262 0.30800 0 2454495.50 3.70981 0.09630 3.76517 0.09678 39.40222 1.01282 0.30912 0 2454496.50 3.74835 0.09687 3.76517 0.09678 38.96351 1.00154 0.31086 0 2454497.50 3.76981 0.09701 3.80871 0.09796 38.83126 0.99872 0.31318 0 2454498.50 3.76517 0.09678 3.81000 0.09824 38.14007 0.98344 0.31606 0 2454499.50 3.80871 0.09796 3.81000 0.09824 37.33482 0.96268 0.31945 0 2454500.50 3.81000 0.09824 3.80321 0.09752 36.38474 0.93300 0.32331 0 2454501.50 3.80321 0.09752 3.78290 0.09357 35.25298 0.87198 0.32758 0 2454502.50 3.78290 0.09357 3.78290 0.09357 34.27640 0.84782 0.33221 0 2454503.50 3.75104 0.09785 3.75104 0.09785 32.99804 0.86082 0.33716 0 2454504.50 3.76400 0.09801 3.76400 0.09801 32.11311 0.83619 0.34236 0 2454505.50 3.73813 0.09805 3.76400 0.09801 31.12113 0.81036 0.34777 0 2454506.50 3.70449 0.09830 3.73813 0.09805 29.93958 0.78531 0.35335 0 2454507.50 3.68914 0.09703 3.70449 0.09830 28.73685 0.76254 0.35904 0 2454508.50 3.67911 0.09625 3.70449 0.09830 27.83545 0.73862 0.36481 0 2454509.50 3.65660 0.09633 3.68914 0.09703 26.85875 0.70644 0.37061 0 2454510.50 3.68461 0.09614 3.67911 0.09625 25.96600 0.67930 0.37642 0 2454511.50 3.65966 0.09677 3.65660 0.09633 25.03338 0.65948 0.38219 0 2454512.50 3.61623 0.09599 3.65660 0.09633 24.30148 0.64019 0.38790 0 2454513.50 3.61348 0.09613 3.68461 0.09614 23.79251 0.62079 0.39353 0 2454514.50 3.64131 0.09660 3.65966 0.09677 22.98266 0.60771 0.39904 0 2454515.50 3.68614 0.09709 3.61623 0.09599 22.10934 0.58690 0.40443 0 2454516.50 3.67544 0.09637 3.61348 0.09613 21.53169 0.57278 0.40966 0 2454517.50 3.67079 0.09631 3.61348 0.09613 21.00891 0.55888 0.41473 0 2454518.50 3.66510 0.09650 3.64131 0.09660 20.68082 0.54863 0.41961 0 2454519.50 3.69067 0.09712 3.68614 0.09709 20.47542 0.53931 0.42430 0 2454520.50 3.67397 0.09601 3.67544 0.09637 19.99154 0.52417 0.42878 0 2454521.50 3.68406 0.09703 3.67079 0.09631 19.57513 0.51359 0.43304 0 2454522.50 3.70577 0.09745 3.66510 0.09650 19.18555 0.50514 0.43707 0 2454523.50 3.75110 0.09750 3.66510 0.09650 18.85621 0.49647 0.44088 0 2454524.50 3.73611 0.09724 3.69067 0.09712 18.68491 0.49168 0.44443 0 2454525.50 3.73611 0.09678 3.67397 0.09601 18.32639 0.47893 0.44774 0 2454526.50 3.71642 0.09682 3.68406 0.09703 18.12841 0.47744 0.45080 0 2454527.50 3.70877 0.09697 3.70577 0.09745 18.01102 0.47361 0.45360 0 2454528.50 3.72804 0.09690 3.75110 0.09750 18.02924 0.46865 0.45613 0 2454529.50 3.72143 0.09777 3.73611 0.09724 17.77991 0.46277 0.45840 0 2454530.50 3.71342 0.09749 3.73611 0.09724 17.62583 0.45876 0.46040 0 2454531.50 3.70376 0.09731 3.73611 0.09678 17.49430 0.45318 0.46213 0 2454532.50 3.70926 0.09775 3.71642 0.09682 17.29313 0.45050 0.46358 0 2454533.50 3.69525 0.09773 3.70877 0.09697 17.17021 0.44892 0.46476 0 2454534.50 3.68137 0.09718 3.72804 0.09690 17.19272 0.44688 0.46566 0 2454535.50 3.66467 0.09618 3.72143 0.09777 17.11647 0.44971 0.46628 0 2454536.50 3.67703 0.09611 3.71342 0.09749 17.05448 0.44772 0.46662 0 2454537.50 3.63348 0.09636 3.70376 0.09731 17.00541 0.44681 0.46669 0 2454538.50 3.64846 0.09576 3.70376 0.09731 17.02110 0.44722 0.46647 0 2454539.50 3.63690 0.09608 3.70926 0.09775 17.08258 0.45020 0.46598 0 2454540.50 3.63800 0.09680 3.69525 0.09773 17.07465 0.45160 0.46521 0 2454541.50 3.65550 0.09651 3.68145 0.09718 17.08795 0.45106 0.46416 0 2454542.50 3.67470 0.09601 3.66527 0.09619 17.11051 0.44904 0.46283 0 2454543.50 3.68767 0.09670 3.67780 0.09612 17.28848 0.45185 0.46123 0 2454544.50 3.67073 0.09617 3.63352 0.09635 17.22000 0.45665 0.45935 0 2454545.50 3.64950 0.09589 3.63353 0.09635 17.38203 0.46094 0.45721 0 2454546.50 3.64822 0.09589 3.64960 0.09581 17.64463 0.46319 0.45480 0 2454547.50 3.67299 0.09653 3.63868 0.09610 17.80078 0.47014 0.45212 0 2454548.50 3.74125 0.09586 3.63793 0.09677 18.03070 0.47964 0.44918 0 2454549.50 3.74107 0.09656 3.65124 0.09650 18.35677 0.48514 0.44599 0 2454550.50 3.76761 0.09821 3.66918 0.09601 18.73526 0.49022 0.44254 0 2454551.50 3.78615 0.09821 3.68435 0.09669 19.13040 0.50206 0.43885 0 2454552.50 3.80327 0.09852 3.68398 0.09669 19.47560 0.51116 0.43492 0 2454553.50 3.86902 0.09915 3.66665 0.09619 19.76011 0.51837 0.43076 0 2454554.50 3.88395 0.09943 3.65261 0.09599 20.09106 0.52798 0.42638 0 2454555.50 3.93673 0.10018 3.65540 0.09604 20.54676 0.53985 0.42179 0 2454556.50 3.92071 0.10028 3.67533 0.09657 21.13663 0.55538 0.41699 0 2454557.50 3.90419 0.10033 3.67552 0.09658 21.65217 0.56892 0.41201 0 2454558.50 3.86364 0.10015 3.73045 0.09598 22.53650 0.57985 0.40685 0 2454559.50 3.82621 0.09944 3.73778 0.09668 23.18267 0.59965 0.40154 0 2454560.50 3.77257 0.09911 3.76802 0.09784 24.01869 0.62368 0.39608 0 2454561.50 3.75306 0.09844 3.78957 0.09775 24.85107 0.64102 0.39050 0 2454562.50 3.71636 0.09717 3.78981 0.09772 25.59110 0.65986 0.38483 0 2454563.50 3.71226 0.09658 3.81439 0.09813 26.54428 0.68286 0.37908 0 2454564.50 3.63470 0.09634 3.85915 0.09844 27.69591 0.70650 0.37328 0 2454565.50 3.66938 0.09666 3.88036 0.09877 28.73532 0.73145 0.36747 0 2454566.50 3.66400 0.09643 3.88013 0.09873 29.66074 0.75474 0.36169 0 2454567.50 3.63709 0.09653 3.90742 0.09906 30.83897 0.78183 0.35595 0 2454568.50 3.60730 0.09633 3.89266 0.09916 31.71866 0.80802 0.35032 0 2454569.50 3.61953 0.09599 3.85478 0.09903 32.41880 0.83286 0.34483 0 2454570.50 3.65807 0.09660 3.85194 0.09896 33.41545 0.85846 0.33952 0 2454571.50 3.64106 0.09630 3.84360 0.09907 34.36175 0.88566 0.33445 0 2454572.50 3.67012 0.09655 3.81467 0.09800 35.09995 0.90170 0.32967 0 2454573.50 3.69195 0.09682 3.81404 0.09792 36.05985 0.92577 0.32522 0 2454574.50 3.68614 0.09678 3.75712 0.09819 36.42379 0.95192 0.32117 0 2454575.50 3.68926 0.09646 3.71890 0.09790 36.87775 0.97078 0.31756 0 2454576.50 3.72633 0.09711 3.71717 0.09787 37.59554 0.98986 0.31444 0 2454577.50 3.76932 0.09668 3.67936 0.09635 37.83237 0.99067 0.31186 0 2454578.50 3.79954 0.09642 3.67760 0.09631 38.30644 1.00316 0.30985 0 2454579.50 3.84144 0.09716 3.68719 0.09656 38.75712 1.01497 0.30844 0 2454580.50 3.83722 0.09687 3.66966 0.09636 38.76820 1.01801 0.30766 0 2454581.50 3.87306 0.09744 3.67116 0.09636 38.81882 1.01893 0.30752 0 2454582.50 3.85783 0.09717 3.65173 0.09648 38.48707 1.01688 0.30803 0 2454583.50 3.84945 0.09744 3.65104 0.09648 38.19697 1.00933 0.30917 0 2454584.50 3.78559 0.09722 3.64803 0.09618 37.73615 0.99495 0.31092 0 2454585.50 3.82058 0.09782 3.64364 0.09658 37.12921 0.98420 0.31326 0 2454586.50 3.80272 0.09650 3.64386 0.09659 36.45462 0.96628 0.31616 0 2454587.50 3.74425 0.09743 3.66076 0.09560 35.84733 0.93618 0.31956 0 2454588.50 3.69354 0.09749 3.66235 0.09558 35.01009 0.91371 0.32343 0 2454589.50 3.65788 0.09587 3.66207 0.09574 34.09847 0.89146 0.32771 0 2454590.50 3.67611 0.09655 3.68021 0.09731 33.31636 0.88097 0.33236 0 2454591.50 3.68296 0.09637 3.68021 0.09731 32.34504 0.85529 0.33731 0 2454592.50 3.64693 0.09643 3.68204 0.09660 31.38394 0.82341 0.34252 0 2454593.50 3.64516 0.09614 3.68119 0.09660 30.40688 0.79796 0.34794 0 2454594.50 3.64455 0.09659 3.67648 0.09717 29.41698 0.77749 0.35352 0 2454595.50 3.66443 0.09555 3.67648 0.09717 28.49162 0.75304 0.35922 0 2454596.50 3.66247 0.09574 3.67746 0.09715 27.60544 0.72927 0.36499 0 2454597.50 3.68021 0.09731 3.76431 0.09783 27.37971 0.71154 0.37079 0 2454598.50 3.68204 0.09660 3.76431 0.09783 26.54229 0.68978 0.37659 0 2454599.50 3.68119 0.09660 3.76462 0.09750 25.74913 0.66687 0.38237 0 2454600.50 3.67648 0.09717 3.78315 0.09857 25.11999 0.65450 0.38808 0 2454601.50 3.67746 0.09715 3.81563 0.09839 24.61714 0.63479 0.39370 0 2454602.50 3.76431 0.09783 3.80945 0.09806 23.90333 0.61532 0.39921 0 2454603.50 3.76462 0.09750 3.80945 0.09806 23.27193 0.59907 0.40459 0 2454604.50 3.78315 0.09857 3.82761 0.09887 22.79011 0.58869 0.40982 0 2454605.50 3.81563 0.09839 3.80431 0.09804 22.10217 0.56961 0.41488 0 2454606.50 3.80945 0.09806 3.82113 0.09862 21.68697 0.55973 0.41976 0 2454607.50 3.82761 0.09887 3.80266 0.09830 21.10866 0.54566 0.42444 0 2454608.50 3.80431 0.09804 3.80266 0.09830 20.67061 0.53434 0.42891 0 2454609.50 3.82113 0.09862 3.79618 0.09847 20.23190 0.52480 0.43317 0 2454610.50 3.80266 0.09830 3.76217 0.09795 19.68285 0.51246 0.43719 0 2454611.50 3.79618 0.09847 3.73246 0.09727 19.19296 0.50019 0.44099 0 2454612.50 3.76217 0.09795 3.73312 0.09727 18.89091 0.49224 0.44454 0 2454613.50 3.73246 0.09727 3.69103 0.09759 18.40349 0.48658 0.44784 1 2454614.50 3.73312 0.09727 3.69103 0.09759 18.15550 0.48003 0.45089 1 2454615.50 3.69103 0.09759 3.69678 0.09712 17.96086 0.47188 0.45368 0 2454616.50 3.69678 0.09712 3.66216 0.09647 17.59612 0.46351 0.45621 0 2454617.50 3.66216 0.09647 3.62204 0.09637 17.23214 0.45851 0.45847 0 2454618.50 3.62204 0.09637 3.62394 0.09620 17.09239 0.45372 0.46046 0 2454619.50 3.62394 0.09620 3.62547 0.09614 16.97263 0.45007 0.46218 0 2454620.50 3.62547 0.09614 3.62748 0.09697 16.87638 0.45115 0.46362 0 2454621.50 3.62748 0.09697 3.62748 0.09697 16.79158 0.44889 0.46479 0 2454622.50 3.63189 0.09636 3.63189 0.09636 16.74762 0.44432 0.46568 0 2454623.50 3.63054 0.09664 3.63054 0.09664 16.69737 0.44448 0.46630 0 2454624.50 3.61513 0.09621 3.61513 0.09621 16.60262 0.44185 0.46663 0 2454625.50 3.63440 0.09642 3.63440 0.09642 16.68713 0.44271 0.46669 0 2454626.50 3.62944 0.09558 3.62944 0.09558 16.68036 0.43927 0.46646 0 2454627.50 3.61103 0.09540 3.61103 0.09540 16.63158 0.43940 0.46596 0 2454628.50 3.60712 0.09633 3.60712 0.09633 16.66940 0.44516 0.46518 0 2454629.50 3.62914 0.09652 3.60712 0.09633 16.74555 0.44719 0.46412 0 2454630.50 3.67892 0.09570 3.62914 0.09652 16.94513 0.45067 0.46278 0 2454631.50 3.72070 0.09591 3.67892 0.09570 17.29776 0.44996 0.46117 0 2454632.50 3.75012 0.09515 3.72070 0.09591 17.63791 0.45465 0.45929 0 2454633.50 3.74786 0.09435 3.75012 0.09515 17.94525 0.45533 0.45714 0 2454634.50 3.73244 0.09480 3.74786 0.09435 18.12590 0.45632 0.45472 0 2454635.50 3.71489 0.09459 3.73244 0.09480 18.26645 0.46394 0.45203 0 2454636.50 3.74003 0.09570 3.73244 0.09480 18.50687 0.47005 0.44909 0 2454637.50 3.73507 0.09570 3.71489 0.09459 18.68530 0.47576 0.44588 0 2454638.50 3.72149 0.09592 3.74003 0.09570 19.10647 0.48892 0.44243 0 2454639.50 3.71623 0.09610 3.73507 0.09570 19.40413 0.49720 0.43874 0 2454640.50 3.69899 0.09619 3.72149 0.09592 19.68516 0.50739 0.43480 0 2454641.50 3.68431 0.09715 3.71623 0.09610 20.03952 0.51821 0.43063 0 2454642.50 3.67268 0.09692 3.71623 0.09610 20.45424 0.52893 0.42625 0 2454643.50 3.65360 0.09640 3.69899 0.09619 20.80595 0.54105 0.42165 0 2454644.50 3.61274 0.09582 3.68431 0.09715 21.20348 0.55911 0.41684 0 2454645.50 3.64119 0.09561 3.67268 0.09692 21.65179 0.57138 0.41186 0 2454646.50 3.59635 0.09580 3.65360 0.09640 22.08966 0.58284 0.40669 0 2454647.50 3.61488 0.09559 3.65360 0.09640 22.67925 0.59840 0.40137 0 2454648.50 3.64027 0.09641 3.61274 0.09582 23.04858 0.61133 0.39591 0 2454649.50 3.65115 0.09616 3.64119 0.09561 23.89910 0.62752 0.39033 0 2454650.50 3.65935 0.09565 3.59635 0.09580 24.30691 0.64751 0.38465 0 2454651.50 3.64718 0.09619 3.61488 0.09559 25.17941 0.66581 0.37890 0 2454652.50 3.65476 0.09641 3.61488 0.09559 25.96761 0.68665 0.37311 0 2454653.50 3.65525 0.09649 3.64027 0.09641 26.98351 0.71462 0.36730 0 2454654.50 3.63843 0.09703 3.65115 0.09616 27.93766 0.73583 0.36151 0 2454655.50 3.64216 0.09659 3.65935 0.09565 28.90943 0.75567 0.35578 0 2454656.50 3.63776 0.09574 3.65935 0.09565 29.84669 0.78017 0.35015 0 2454657.50 3.64816 0.09635 3.64718 0.09619 30.70239 0.80975 0.34466 0 2454658.50 3.67892 0.09616 3.65476 0.09641 31.73473 0.83718 0.33936 0 2454659.50 3.67195 0.09674 3.65476 0.09641 32.70313 0.86272 0.33430 0 2454660.50 3.64589 0.09587 3.65524 0.09649 33.66188 0.88860 0.32953 0 2454661.50 3.68186 0.09662 3.63868 0.09702 34.42950 0.91804 0.32509 0 2454662.50 3.71960 0.09704 3.63891 0.09701 35.30363 0.94121 0.32105 0 2454663.50 3.71868 0.09765 3.64272 0.09659 36.14571 0.95845 0.31746 0 2454664.50 3.67642 0.09573 3.64290 0.09659 36.86483 0.97746 0.31435 0 2454665.50 3.69360 0.09660 3.63553 0.09575 37.39852 0.98495 0.31179 0 2454666.50 3.70608 0.09695 3.65473 0.09640 38.08112 1.00450 0.30979 0 2454667.50 3.71452 0.09724 3.65588 0.09641 38.43633 1.01365 0.30841 0 2454668.50 3.70743 0.09760 3.67536 0.09615 38.83186 1.01582 0.30765 0 2454669.50 3.70828 0.09714 3.67489 0.09614 38.85680 1.01659 0.30753 0 2454670.50 3.70571 0.09705 3.66387 0.09642 38.60864 1.01607 0.30805 0 2454671.50 3.67415 0.09671 3.64877 0.09585 38.16221 1.00246 0.30921 0 2454672.50 3.66791 0.09659 3.64904 0.09585 37.73119 0.99104 0.31098 0 2454673.50 3.62131 0.09652 3.67915 0.09585 37.47182 0.97618 0.31334 0 2454674.50 3.61488 0.09596 3.69703 0.09599 36.96394 0.95969 0.31626 0 2454675.50 3.61660 0.09642 3.69549 0.09591 36.16213 0.93855 0.31968 0 2454676.50 3.61299 0.09645 3.68468 0.09650 35.19628 0.92174 0.32356 0 2454677.50 3.64192 0.09724 3.68275 0.09643 34.26231 0.89715 0.32785 0 2454678.50 3.64265 0.09651 3.66098 0.09533 33.11288 0.86227 0.33251 0 2454679.50 3.62950 0.09686 3.66800 0.09589 32.20788 0.84200 0.33747 0 2454680.50 3.65140 0.09750 3.66687 0.09586 31.22486 0.81629 0.34269 0 2454681.50 3.64663 0.09674 3.67875 0.09602 30.35727 0.79237 0.34811 0 2454682.50 3.64852 0.09659 3.69488 0.09703 29.53526 0.77561 0.35370 0 2454683.50 3.62247 0.09580 3.70127 0.09680 28.65570 0.74942 0.35939 0 2454684.50 3.68547 0.09666 3.70107 0.09677 27.75573 0.72573 0.36516 0 2454685.50 3.66394 0.09611 3.67195 0.09686 26.68228 0.70382 0.37097 0 2454686.50 3.64504 0.09569 3.67916 0.09686 25.91748 0.68229 0.37677 0 2454687.50 3.65458 0.09580 3.69690 0.09680 25.26270 0.66149 0.38254 0 2454688.50 3.67495 0.09465 3.69745 0.09680 24.52902 0.64219 0.38825 0 2454689.50 3.66602 0.09453 3.66302 0.09654 23.61207 0.62230 0.39387 0 2454690.50 3.64755 0.09524 3.66072 0.09702 22.95089 0.60824 0.39938 0 2454691.50 3.64736 0.09498 3.64586 0.09659 22.25469 0.58961 0.40475 0 2454692.50 3.64761 0.09532 3.64646 0.09661 21.69479 0.57476 0.40998 0 2454693.50 3.66088 0.09542 3.66551 0.09726 21.28011 0.56462 0.41503 0 2454694.50 3.68321 0.09691 3.64431 0.09637 20.66899 0.54654 0.41990 0 2454695.50 3.69795 0.09636 3.63278 0.09682 20.15236 0.53710 0.42458 0 2454696.50 3.65562 0.09673 3.66598 0.09630 19.91524 0.52316 0.42904 0 2454697.50 3.66828 0.09678 3.66427 0.09668 19.51748 0.51494 0.43329 0 2454698.50 3.70541 0.09683 3.66478 0.09667 19.16281 0.50550 0.43731 0 2454699.50 3.66149 0.09653 3.66817 0.09595 18.85275 0.49315 0.44110 0 2454700.50 3.67189 0.09716 3.66677 0.09672 18.54638 0.48923 0.44464 0 2454701.50 3.65385 0.09676 3.66330 0.09673 18.25728 0.48209 0.44794 0 2454702.50 3.67587 0.09743 3.68127 0.09680 18.10029 0.47597 0.45098 0 2454703.50 3.65030 0.09635 3.64907 0.09624 17.72270 0.46744 0.45376 0 2454704.50 3.63122 0.09675 3.64865 0.09624 17.52554 0.46227 0.45628 0 2454705.50 3.66957 0.09627 3.65280 0.09641 17.37353 0.45856 0.45853 0 2454706.50 3.66901 0.09665 3.65878 0.09627 17.25245 0.45394 0.46051 0 2454707.50 3.66993 0.09579 3.65391 0.09644 17.10221 0.45141 0.46222 0 2454708.50 3.66859 0.09672 3.67116 0.09672 17.07662 0.44988 0.46366 0 2454709.50 3.66443 0.09674 3.68424 0.09682 17.05202 0.44813 0.46482 0 2454710.50 3.68498 0.09687 3.69782 0.09673 17.04999 0.44600 0.46571 0 2454711.50 3.64724 0.09622 3.67788 0.09659 16.91405 0.44421 0.46631 0 2454712.50 3.65250 0.09642 3.67788 0.09659 16.89040 0.44359 0.46664 0 2454713.50 3.65898 0.09628 3.65434 0.09698 16.77887 0.44528 0.46668 0 2454714.50 3.65391 0.09645 3.66791 0.09666 16.85799 0.44424 0.46645 0 2454715.50 3.67116 0.09672 3.68437 0.09658 16.97079 0.44486 0.46594 0 2454716.50 3.68424 0.09682 3.64583 0.09645 16.85038 0.44579 0.46515 0 2454717.50 3.69782 0.09673 3.63489 0.09655 16.87714 0.44827 0.46408 0 2454718.50 3.67788 0.09659 3.62485 0.09680 16.92846 0.45208 0.46274 0 2454719.50 3.65434 0.09698 3.62485 0.09680 17.04750 0.45525 0.46112 0 2454720.50 3.66791 0.09666 3.64290 0.09581 17.27375 0.45431 0.45923 0 2454721.50 3.68437 0.09658 3.66455 0.09553 17.54117 0.45729 0.45707 0 2454722.50 3.64583 0.09645 3.65409 0.09618 17.67851 0.46534 0.45464 0 2454723.50 3.63489 0.09655 3.62895 0.09653 17.76677 0.47258 0.45195 0 2454724.50 3.62485 0.09680 3.63140 0.09613 18.01342 0.47686 0.44899 0 2454725.50 3.64290 0.09581 3.62663 0.09653 18.24972 0.48577 0.44578 0 2454726.50 3.66455 0.09553 3.62663 0.09653 18.53635 0.49340 0.44232 0 2454727.50 3.65409 0.09618 3.64033 0.09683 18.92202 0.50330 0.43862 0 2454728.50 3.62895 0.09653 3.68761 0.09735 19.51708 0.51522 0.43468 0 2454729.50 3.63140 0.09613 3.69165 0.09737 19.91907 0.52536 0.43050 0 2454730.50 3.62663 0.09653 3.70027 0.09707 20.37956 0.53463 0.42611 0 2454731.50 3.64033 0.09683 3.73752 0.09636 21.03708 0.54235 0.42150 0 2454732.50 3.68761 0.09735 3.73752 0.09636 21.52523 0.55493 0.41669 0 2454733.50 3.69165 0.09737 3.68553 0.09572 21.74395 0.56472 0.41170 0 2454734.50 3.70027 0.09707 3.64216 0.09668 22.03794 0.58497 0.40653 0 2454735.50 3.73752 0.09636 3.63868 0.09683 22.60524 0.60158 0.40121 0 2454736.50 3.68553 0.09572 3.63666 0.09624 23.22103 0.61450 0.39574 0 2454737.50 3.64216 0.09668 3.63666 0.09624 23.89053 0.63222 0.39016 0 2454738.50 3.63868 0.09683 3.66834 0.09665 24.81609 0.65384 0.38448 0 2454739.50 3.63666 0.09624 3.64112 0.09625 25.38590 0.67106 0.37872 0 2454740.50 3.66834 0.09665 3.65060 0.09609 26.24924 0.69094 0.37293 0 2454741.50 3.64112 0.09625 3.65060 0.09609 27.08636 0.71298 0.36712 0 2454742.50 3.65060 0.09609 3.64657 0.09592 27.92985 0.73468 0.36133 0 2454743.50 3.64657 0.09592 3.64143 0.09605 28.79605 0.75953 0.35561 0 2454744.50 3.64143 0.09605 3.65317 0.09557 29.82536 0.78028 0.34998 0 2454745.50 3.65317 0.09557 3.65317 0.09557 30.78241 0.80532 0.34450 0 2454746.50 3.67097 0.09586 3.67097 0.09586 31.90535 0.83317 0.33920 0 2454747.50 3.67960 0.09587 3.67960 0.09587 32.95508 0.85862 0.33415 0 2454748.50 3.70308 0.09599 3.67960 0.09587 33.91526 0.88364 0.32938 0 2454749.50 3.68908 0.09650 3.70308 0.09599 35.06689 0.90903 0.32496 0 2454750.50 3.69018 0.09682 3.68908 0.09650 35.81646 0.93690 0.32094 0 2454751.50 3.71311 0.09625 3.68908 0.09650 36.62944 0.95816 0.31735 0 2454752.50 3.70718 0.09616 3.69018 0.09682 37.36390 0.98027 0.31427 0 2454753.50 3.71519 0.09649 3.69018 0.09682 37.97768 0.99638 0.31172 0 2454754.50 3.73128 0.09720 3.71311 0.09625 38.70235 1.00323 0.30974 0 2454755.50 3.74412 0.09735 3.70718 0.09616 38.98395 1.01118 0.30837 0 2454756.50 3.79024 0.09819 3.70718 0.09616 39.17146 1.01604 0.30764 0 2454757.50 3.74963 0.09695 3.71519 0.09649 39.28128 1.02024 0.30754 0 2454758.50 3.70351 0.09731 3.71519 0.09649 39.14282 1.01664 0.30808 0 2454759.50 3.69862 0.09708 3.73128 0.09720 39.01374 1.01627 0.30926 0 2454760.50 3.73611 0.09745 3.74412 0.09735 38.69855 1.00623 0.31105 0 2454761.50 3.69110 0.09611 3.74412 0.09735 38.11380 0.99102 0.31343 0 2454762.50 3.69305 0.09665 3.79024 0.09819 37.87254 0.98111 0.31635 0 2454763.50 3.67654 0.09706 3.74963 0.09695 36.66612 0.94800 0.31979 0 2454764.50 3.68584 0.09671 3.74963 0.09695 35.78882 0.92532 0.32368 0 2454765.50 3.69831 0.09719 3.70392 0.09731 34.43035 0.90457 0.32799 0 2454766.50 3.67005 0.09678 3.69924 0.09711 33.42920 0.87755 0.33265 0 2454767.50 3.65990 0.09590 3.69966 0.09713 32.45579 0.85205 0.33762 0 2454768.50 3.67611 0.09574 3.73288 0.09737 31.75668 0.82837 0.34285 0 2454769.50 3.66504 0.09512 3.69309 0.09619 30.44606 0.79299 0.34828 0 2454770.50 3.66382 0.09616 3.69350 0.09621 29.49537 0.76827 0.35387 0 2454771.50 3.69580 0.09609 3.69199 0.09656 28.55588 0.74684 0.35957 0 2454772.50 3.70217 0.09604 3.67344 0.09691 27.52173 0.72605 0.36534 0 2454773.50 3.68779 0.09643 3.67309 0.09689 26.66499 0.70339 0.37115 0 2454774.50 3.67165 0.09605 3.67683 0.09674 25.87667 0.68084 0.37695 0 2454775.50 3.69434 0.09595 3.68631 0.09698 25.16715 0.66211 0.38272 0 2454776.50 3.65837 0.09624 3.65983 0.09669 24.25769 0.64084 0.38842 0 2454777.50 3.67158 0.09625 3.65896 0.09605 23.56551 0.61863 0.39404 0 2454778.50 3.67189 0.09653 3.65890 0.09606 22.92035 0.60176 0.39954 0 2454779.50 3.69929 0.09636 3.67195 0.09585 22.39594 0.58462 0.40491 0 2454780.50 3.70773 0.09695 3.66227 0.09560 21.77212 0.56834 0.41013 0 2454781.50 3.70584 0.09661 3.66466 0.09629 21.25959 0.55862 0.41518 0 2454782.50 3.78009 0.09802 3.69253 0.09645 20.92789 0.54666 0.42005 0 2454783.50 3.75709 0.09799 3.69240 0.09647 20.46957 0.53479 0.42472 0 2454784.50 3.77030 0.09664 3.68303 0.09600 19.99541 0.52118 0.42918 0 2454785.50 3.74070 0.09763 3.67027 0.09631 19.53799 0.51270 0.43342 0 2454786.50 3.71532 0.09775 3.67592 0.09629 19.21059 0.50319 0.43743 0 2454787.50 3.69868 0.09659 3.69493 0.09654 18.98061 0.49593 0.44121 0 2454788.50 3.70932 0.09682 3.65317 0.09614 18.46890 0.48603 0.44475 0 2454789.50 3.68614 0.09605 3.65303 0.09613 18.19820 0.47891 0.44804 0 2454790.50 3.65874 0.09617 3.66897 0.09647 18.03271 0.47413 0.45107 0 2454791.50 3.64351 0.09685 3.67997 0.09654 17.86636 0.46871 0.45384 0 2454792.50 3.64632 0.09629 3.70531 0.09663 17.79199 0.46399 0.45635 0 2454793.50 3.62889 0.09641 3.69360 0.09701 17.56264 0.46127 0.45860 0 2454794.50 3.65635 0.09647 3.69100 0.09645 17.40015 0.45467 0.46057 0 2454795.50 3.66210 0.09611 3.72461 0.09709 17.42950 0.45432 0.46227 0 2454796.50 3.65617 0.09666 3.72345 0.09707 17.31691 0.45144 0.46370 0 2454797.50 3.66638 0.09656 3.71911 0.09748 17.21108 0.45110 0.46485 0 2454798.50 3.68620 0.09716 3.71875 0.09682 17.14479 0.44638 0.46573 0 2454799.50 3.65012 0.09593 3.69681 0.09699 17.00006 0.44600 0.46632 0 2454800.50 3.64174 0.09613 3.68781 0.09720 16.93560 0.44639 0.46664 0 2454801.50 3.68253 0.09664 3.67840 0.09648 16.88958 0.44297 0.46668 0 2454802.50 3.69580 0.09741 3.67234 0.09679 16.87918 0.44488 0.46644 0 2454803.50 3.64589 0.09599 3.66414 0.09659 16.87908 0.44494 0.46592 0 2454804.50 3.66565 0.09674 3.66375 0.09660 16.93528 0.44652 0.46512 0 2454805.50 3.68981 0.09656 3.66030 0.09668 16.99788 0.44895 0.46405 0 2454806.50 3.71232 0.09695 3.66683 0.09670 17.12786 0.45169 0.46269 0 2454807.50 3.67782 0.09707 3.66074 0.09647 17.22031 0.45379 0.46107 0 2454808.50 3.67513 0.09627 3.67189 0.09609 17.41597 0.45574 0.45917 0 2454809.50 3.66767 0.09613 3.67314 0.09625 17.58771 0.46087 0.45700 0 2454810.50 3.68321 0.09699 3.68329 0.09569 17.82595 0.46310 0.45456 0 2454811.50 3.67195 0.09698 3.68365 0.09568 18.04149 0.46862 0.45186 0 2454812.50 3.65856 0.09643 3.65117 0.09586 18.11914 0.47572 0.44890 0 2454813.50 3.66479 0.09674 3.64768 0.09514 18.36407 0.47900 0.44568 0 2454814.50 3.66210 0.09639 3.68073 0.09551 18.82225 0.48842 0.44221 0 2454815.50 3.64382 0.09677 3.66758 0.09576 19.07386 0.49802 0.43850 0 2454816.50 3.64785 0.09699 3.67810 0.09570 19.47792 0.50677 0.43455 0 2454817.50 3.66137 0.09702 3.68200 0.09558 19.87914 0.51604 0.43037 0 2454818.50 3.68204 0.09660 3.68199 0.09556 20.29201 0.52665 0.42597 0 2454819.50 3.66975 0.09658 3.70011 0.09658 20.84078 0.54397 0.42136 0 2454820.50 3.69758 0.09589 3.70040 0.09646 21.32684 0.55592 0.41654 0 2454821.50 3.68272 0.09613 3.70913 0.09666 21.89974 0.57071 0.41154 0 2454822.50 3.69483 0.09546 3.66517 0.09632 22.19471 0.58326 0.40637 0 2454823.50 3.64871 0.09547 3.66469 0.09631 22.78567 0.59884 0.40104 0 2454824.50 3.63892 0.09448 3.66786 0.09629 23.44033 0.61537 0.39557 0 2454825.50 3.67831 0.09478 3.67642 0.09655 24.17316 0.63486 0.38998 0 2454826.50 3.67489 0.09569 3.67391 0.09657 24.87646 0.65388 0.38430 0 2454827.50 3.69244 0.09553 3.67300 0.09645 25.63210 0.67307 0.37855 0 2454828.50 3.68180 0.09519 3.67311 0.09646 26.43630 0.69422 0.37275 0 2454829.50 3.70149 0.09631 3.65673 0.09642 27.15810 0.71609 0.36694 0 2454830.50 3.71666 0.09660 3.68665 0.09680 28.26444 0.74211 0.36116 0 2454831.50 3.72107 0.09664 3.64490 0.09549 28.85174 0.75584 0.35543 0 2454832.50 3.65898 0.09626 3.64459 0.09546 29.78425 0.78016 0.34981 0 2454833.50 3.65880 0.09616 3.63802 0.09519 30.68416 0.80286 0.34433 0 2454834.50 3.67617 0.09646 3.65445 0.09547 31.79146 0.83052 0.33904 0 2454835.50 3.67372 0.09662 3.65445 0.09547 32.75935 0.85580 0.33400 1 2454836.50 3.67371 0.09649 3.67582 0.09575 33.90941 0.88325 0.32924 1 2454837.50 3.65444 0.09637 3.67692 0.09589 34.84693 0.90873 0.32483 1 2454838.50 3.68757 0.09679 3.67692 0.09589 35.72441 0.93162 0.32082 1 2454839.50 3.64436 0.09545 3.68874 0.09616 36.64967 0.95541 0.31725 1 2454840.50 3.63802 0.09519 3.66956 0.09643 37.17562 0.97694 0.31418 1 2454841.50 3.65445 0.09547 3.66956 0.09643 37.78233 0.99288 0.31165 1 2454842.50 3.67582 0.09575 3.66592 0.09670 38.22299 1.00828 0.30969 1 2454843.50 3.67692 0.09589 3.66592 0.09670 38.55802 1.01712 0.30834 1 2454844.50 3.68874 0.09616 3.70938 0.09712 39.19793 1.02626 0.30762 1 2454845.50 3.66956 0.09643 3.68632 0.09602 38.97424 1.01519 0.30754 1 2454846.50 3.66592 0.09670 3.68632 0.09602 38.83192 1.01148 0.30811 1 2454847.50 3.70938 0.09712 3.72094 0.09730 38.89413 1.01707 0.30930 0 2454848.50 3.68632 0.09602 3.72094 0.09730 38.44307 1.00527 0.31111 0 2454849.50 3.72094 0.09730 3.69850 0.09704 37.62969 0.98737 0.31351 0 2454850.50 3.69850 0.09704 3.68687 0.09697 36.81686 0.96830 0.31645 0 2454851.50 3.68687 0.09697 3.68687 0.09697 36.02705 0.94752 0.31990 0 2454852.50 3.68596 0.09615 3.68596 0.09615 35.15370 0.91702 0.32381 0 2454853.50 3.68632 0.09683 3.68632 0.09683 34.23799 0.89932 0.32813 0 2454854.50 3.67739 0.09625 3.68632 0.09683 33.28288 0.87424 0.33280 0 2454855.50 3.67030 0.09718 3.67739 0.09625 32.23059 0.84359 0.33778 0 2454856.50 3.66198 0.09678 3.67030 0.09718 31.19447 0.82592 0.34301 0 2454857.50 3.68229 0.09702 3.67030 0.09718 30.22878 0.80035 0.34845 0 2454858.50 3.68871 0.09691 3.66198 0.09678 29.21506 0.77207 0.35404 0 2454859.50 3.65831 0.09574 3.68229 0.09702 28.45295 0.74966 0.35975 0 2454860.50 3.66602 0.09649 3.68229 0.09702 27.56119 0.72617 0.36552 0 2454861.50 3.64418 0.09659 3.68871 0.09691 26.75270 0.70283 0.37132 0 2454862.50 3.65519 0.09692 3.65831 0.09574 25.72209 0.67319 0.37713 0 2454863.50 3.66602 0.09668 3.66602 0.09649 25.00563 0.65813 0.38289 0 2454864.50 3.66657 0.09737 3.66602 0.09649 24.27702 0.63895 0.38860 0 2454865.50 3.68871 0.09685 3.64418 0.09659 23.45003 0.62152 0.39421 0 2454866.50 3.69813 0.09747 3.65519 0.09692 22.87800 0.60663 0.39971 0 2454867.50 3.68143 0.09681 3.66602 0.09668 22.34186 0.58922 0.40508 0 2454868.50 3.68999 0.09655 3.66657 0.09737 21.78095 0.57840 0.41029 0 2454869.50 3.67984 0.09709 3.66657 0.09737 21.25513 0.56444 0.41533 0 2454870.50 3.69201 0.09768 3.68871 0.09685 20.89170 0.54855 0.42019 0 2454871.50 3.67966 0.09751 3.69813 0.09747 20.48782 0.53996 0.42486 0 2454872.50 3.69073 0.09691 3.68143 0.09681 19.97431 0.52525 0.42931 0 2454873.50 3.69715 0.09724 3.68999 0.09655 19.63153 0.51364 0.43355 0 2454874.50 3.68950 0.09677 3.67984 0.09709 19.22058 0.50713 0.43755 0 2454875.50 3.67758 0.09697 3.67984 0.09709 18.89350 0.49850 0.44132 0 2454876.50 3.64589 0.09641 3.69201 0.09768 18.65650 0.49361 0.44485 0 2454877.50 3.65837 0.09648 3.67966 0.09751 18.32295 0.48556 0.44813 0 2454878.50 3.66235 0.09593 3.69073 0.09691 18.13248 0.47613 0.45116 0 2454879.50 3.67629 0.09636 3.69715 0.09724 17.94338 0.47194 0.45392 0 2454880.50 3.69256 0.09609 3.68950 0.09677 17.71046 0.46451 0.45642 0 2454881.50 3.66473 0.09586 3.67758 0.09697 17.48153 0.46096 0.45866 0 2454882.50 3.65739 0.09599 3.67758 0.09697 17.33262 0.45704 0.46063 0 2454883.50 3.65342 0.09585 3.64590 0.09641 17.05761 0.45108 0.46232 0 2454884.50 3.64357 0.09618 3.65837 0.09648 17.01134 0.44863 0.46374 0 2454885.50 3.65904 0.09655 3.66235 0.09593 16.94614 0.44390 0.46488 0 2454886.50 3.67012 0.09639 3.67614 0.09636 16.94670 0.44421 0.46575 0 2454887.50 3.63342 0.09546 3.69243 0.09610 16.97888 0.44190 0.46634 0 2454888.50 3.64057 0.09629 3.66499 0.09588 16.83040 0.44030 0.46665 0 2454889.50 3.61403 0.09638 3.66508 0.09589 16.82865 0.44028 0.46668 0 2454890.50 3.64021 0.09633 3.65856 0.09598 16.81666 0.44120 0.46643 0 2454891.50 3.67018 0.09677 3.65357 0.09591 16.83185 0.44185 0.46590 0 2454892.50 3.67391 0.09695 3.64512 0.09616 16.85123 0.44456 0.46509 0 2454893.50 3.65580 0.09702 3.66208 0.09651 17.00886 0.44826 0.46401 0 2454894.50 3.66834 0.09683 3.67214 0.09641 17.15603 0.45042 0.46265 0 2454895.50 3.64742 0.09772 3.63926 0.09559 17.12326 0.44976 0.46101 0 2454896.50 3.67091 0.09705 3.64516 0.09635 17.29386 0.45712 0.45911 0 2454897.50 3.67874 0.09729 3.64560 0.09636 17.46125 0.46152 0.45693 0 2454898.50 3.66008 0.09726 3.62248 0.09650 17.53774 0.46719 0.45448 0 2454899.50 3.69152 0.09762 3.64415 0.09642 17.85487 0.47241 0.45177 0 2454900.50 3.68229 0.09743 3.67149 0.09679 18.22765 0.48052 0.44880 0 2454901.50 3.66431 0.09677 3.67971 0.09687 18.53386 0.48789 0.44558 0 2454902.50 3.65648 0.09696 3.66758 0.09700 18.76434 0.49629 0.44210 0 2454903.50 3.66993 0.09711 3.67442 0.09693 19.11967 0.50440 0.43838 0 2454904.50 3.66363 0.09656 3.67481 0.09694 19.47167 0.51366 0.43443 0 2454905.50 3.67501 0.09702 3.65620 0.09761 19.75196 0.52732 0.43024 0 2454906.50 3.65788 0.09699 3.67874 0.09701 20.28728 0.53500 0.42583 0 2454907.50 3.68516 0.09686 3.68550 0.09714 20.77278 0.54752 0.42121 0 2454908.50 3.67366 0.09669 3.66633 0.09722 21.14576 0.56074 0.41639 0 2454909.50 3.68113 0.09593 3.66668 0.09722 21.66558 0.57446 0.41139 0 2454910.50 3.65599 0.09685 3.69100 0.09733 22.36885 0.58984 0.40621 0 2454911.50 3.66590 0.09588 3.69223 0.09753 22.97585 0.60693 0.40087 0 2454912.50 3.69715 0.09604 3.68226 0.09707 23.55255 0.62091 0.39540 0 2454913.50 3.69256 0.09662 3.66102 0.09718 24.09323 0.63952 0.38981 0 2454914.50 3.69158 0.09678 3.66125 0.09719 24.81341 0.65867 0.38412 0 2454915.50 3.68186 0.09685 3.67543 0.09697 25.67311 0.67734 0.37837 0 2454916.50 3.67776 0.09727 3.68520 0.09671 26.54870 0.69673 0.37257 0 2454917.50 3.66761 0.09695 3.66621 0.09679 27.25496 0.71957 0.36676 0 2454918.50 3.67862 0.09689 3.66577 0.09678 28.13192 0.74273 0.36098 0 2454919.50 3.70871 0.09647 3.66400 0.09711 29.03135 0.76942 0.35526 0 2454920.50 3.72180 0.09693 3.67207 0.09656 30.03810 0.78988 0.34964 0 2454921.50 3.70021 0.09739 3.65984 0.09635 30.89784 0.81341 0.34417 0 2454922.50 3.68810 0.09723 3.65917 0.09633 31.86236 0.83881 0.33889 0 2454923.50 3.70510 0.09688 3.66194 0.09594 32.85611 0.86082 0.33385 0 2454924.50 3.70663 0.09668 3.65641 0.09627 33.75917 0.88889 0.32910 0 2454925.50 3.68443 0.09711 3.65643 0.09625 34.68026 0.91289 0.32470 0 2454926.50 3.68969 0.09660 3.66047 0.09621 35.59035 0.93544 0.32070 0 2454927.50 3.71526 0.09777 3.69959 0.09636 36.78107 0.95798 0.31715 0 2454928.50 3.72082 0.09773 3.69970 0.09637 37.50137 0.97685 0.31409 0 2454929.50 3.67005 0.09761 3.69095 0.09640 38.01929 0.99301 0.31158 0 2454930.50 3.68480 0.09673 3.69088 0.09639 38.49588 1.00538 0.30964 0 2454931.50 3.71911 0.09695 3.65438 0.09683 38.44456 1.01870 0.30831 0 2454932.50 3.65348 0.09647 3.65556 0.09667 38.63215 1.02165 0.30761 0 2454933.50 3.67146 0.09726 3.65454 0.09667 38.63629 1.02197 0.30755 0 2454934.50 3.65745 0.09622 3.65224 0.09680 38.46607 1.01954 0.30813 0 2454935.50 3.64577 0.09600 3.65134 0.09679 38.15507 1.01137 0.30935 0 2454936.50 3.64589 0.09595 3.65740 0.09712 37.77087 1.00295 0.31118 0 2454937.50 3.65672 0.09584 3.65492 0.09694 37.16684 0.98576 0.31359 0 2454938.50 3.65721 0.09641 3.65420 0.09694 36.46784 0.96743 0.31655 0 2454939.50 3.70088 0.09653 3.65122 0.09680 35.65336 0.94525 0.32001 0 2454940.50 3.69030 0.09632 3.65122 0.09680 34.79516 0.92250 0.32394 0 2454941.50 3.64345 0.09685 3.65128 0.09666 33.88391 0.89698 0.32827 0 2454942.50 3.64914 0.09663 3.67703 0.09683 33.16937 0.87352 0.33295 0 2454943.50 3.64828 0.09673 3.67703 0.09683 32.19746 0.84792 0.33794 0 2454944.50 3.65660 0.09713 3.68088 0.09642 31.25455 0.81871 0.34318 0 2454945.50 3.65385 0.09694 3.67330 0.09714 30.22409 0.79925 0.34862 0 2454946.50 3.65122 0.09680 3.64271 0.09674 29.03291 0.77105 0.35422 0 2454947.50 3.65128 0.09666 3.64271 0.09674 28.11963 0.74680 0.35992 0 2454948.50 3.67703 0.09683 3.65941 0.09699 27.36337 0.72526 0.36570 0 2454949.50 3.68088 0.09642 3.66345 0.09684 26.54403 0.70168 0.37150 0 2454950.50 3.67330 0.09714 3.66345 0.09684 25.73399 0.68026 0.37730 0 2454951.50 3.64271 0.09674 3.69281 0.09707 25.16524 0.66151 0.38307 0 2454952.50 3.65941 0.09699 3.67317 0.09695 24.30269 0.64142 0.38877 0 2454953.50 3.66345 0.09684 3.64865 0.09739 23.45848 0.62613 0.39438 0 2454954.50 3.69281 0.09707 3.65641 0.09726 22.86660 0.60826 0.39988 0 2454955.50 3.67317 0.09695 3.65641 0.09726 22.26550 0.59227 0.40524 0 2454956.50 3.64865 0.09739 3.67330 0.09703 21.80421 0.57597 0.41045 0 2454957.50 3.65641 0.09726 3.70186 0.09735 21.44403 0.56395 0.41549 0 2454958.50 3.67330 0.09703 3.69587 0.09713 20.91769 0.54973 0.42034 0 2454959.50 3.70186 0.09735 3.68810 0.09737 20.41882 0.53906 0.42500 0 2454960.50 3.69587 0.09713 3.68810 0.09737 19.99808 0.52796 0.42944 0 2454961.50 3.68810 0.09737 3.72278 0.09712 19.79442 0.51642 0.43367 0 2454962.50 3.72278 0.09712 3.72217 0.09684 19.43107 0.50555 0.43767 0 2454963.50 3.72217 0.09684 3.75342 0.09643 19.26152 0.49484 0.44144 0 2454964.50 3.75342 0.09643 3.76504 0.09718 19.01662 0.49082 0.44496 0 2454965.50 3.76504 0.09718 3.76614 0.09630 18.74553 0.47933 0.44823 0 2454966.50 3.76614 0.09630 3.76614 0.09630 18.49573 0.47295 0.45125 0 2454967.50 3.76309 0.09720 3.76309 0.09720 18.25689 0.47155 0.45400 0 2454968.50 3.77978 0.09716 3.77978 0.09716 18.13806 0.46626 0.45650 0 2454969.50 3.80988 0.09765 3.80988 0.09765 18.10534 0.46405 0.45872 0 2454970.50 3.80920 0.09785 3.80920 0.09785 17.94861 0.46104 0.46068 0 2454971.50 3.81202 0.09841 3.81202 0.09841 17.83115 0.46033 0.46237 0 2454972.50 3.76125 0.09799 3.76125 0.09799 17.48677 0.45558 0.46378 0 2454973.50 3.75465 0.09794 3.76125 0.09799 17.40147 0.45336 0.46491 0 2454974.50 3.75874 0.09768 3.75465 0.09794 17.30698 0.45145 0.46577 0 2454975.50 3.73152 0.09796 3.75874 0.09768 17.28282 0.44915 0.46635 0 2454976.50 3.71348 0.09725 3.73152 0.09796 17.13556 0.44986 0.46665 0 2454977.50 3.72663 0.09699 3.71348 0.09725 17.05114 0.44654 0.46667 0 2454978.50 3.70883 0.09743 3.72663 0.09699 17.13045 0.44582 0.46642 0 2454979.50 3.65697 0.09689 3.70883 0.09743 17.08796 0.44888 0.46588 0 2454980.50 3.66357 0.09762 3.65697 0.09689 16.90811 0.44796 0.46506 0 2454981.50 3.68932 0.09676 3.65697 0.09689 16.98786 0.45007 0.46397 0 2454982.50 3.65599 0.09663 3.66357 0.09762 17.11942 0.45615 0.46260 0 2454983.50 3.69654 0.09659 3.68932 0.09676 17.36292 0.45539 0.46096 0 2454984.50 3.69954 0.09715 3.65599 0.09663 17.34998 0.45858 0.45904 0 2454985.50 3.72443 0.09723 3.69654 0.09659 17.71073 0.46276 0.45686 0 2454986.50 3.77666 0.09765 3.69954 0.09715 17.91702 0.47050 0.45440 0 2454987.50 3.77874 0.09728 3.72443 0.09723 18.25527 0.47657 0.45169 0 2454988.50 3.78474 0.09724 3.72443 0.09723 18.49833 0.48291 0.44871 0 2454989.50 3.75458 0.09774 3.77666 0.09765 19.03099 0.49207 0.44548 0 2454990.50 3.77147 0.09749 3.77874 0.09728 19.34274 0.49797 0.44199 0 2454991.50 3.76254 0.09793 3.78474 0.09724 19.70432 0.50623 0.43827 0 2454992.50 3.76963 0.09800 3.75458 0.09774 19.90581 0.51820 0.43430 0 2454993.50 3.73636 0.09754 3.77147 0.09749 20.38714 0.52700 0.43011 0 2454994.50 3.77489 0.09755 3.77147 0.09749 20.81217 0.53799 0.42569 0 2454995.50 3.75195 0.09767 3.76254 0.09793 21.22154 0.55232 0.42107 0 2454996.50 3.73360 0.09760 3.76963 0.09800 21.75730 0.56562 0.41624 0 2454997.50 3.73990 0.09766 3.73636 0.09754 22.09404 0.57680 0.41123 0 2454998.50 3.74364 0.09685 3.77489 0.09755 22.89545 0.59166 0.40605 0 2454999.50 3.73905 0.09745 3.77489 0.09755 23.50967 0.60754 0.40071 0 2455000.50 3.71868 0.09728 3.75195 0.09767 24.01894 0.62525 0.39523 0 2455001.50 3.70498 0.09671 3.73360 0.09760 24.59274 0.64286 0.38964 0 2455002.50 3.69073 0.09810 3.73990 0.09766 25.36962 0.66245 0.38395 0 2455003.50 3.65733 0.09764 3.74364 0.09685 26.17404 0.67712 0.37819 0 2455004.50 3.67348 0.09719 3.74364 0.09685 26.99543 0.69837 0.37239 0 2455005.50 3.66944 0.09787 3.73905 0.09745 27.82339 0.72512 0.36659 0 2455006.50 3.65629 0.09715 3.71868 0.09728 28.56586 0.74729 0.36080 0 2455007.50 3.67752 0.09701 3.70498 0.09671 29.38484 0.76702 0.35508 0 2455008.50 3.69470 0.09806 3.70498 0.09671 30.33682 0.79187 0.34947 0 2455009.50 3.70975 0.09776 3.69067 0.09809 31.18797 0.82890 0.34400 0 2455010.50 3.71159 0.09773 3.65734 0.09760 31.87619 0.85061 0.33873 0 2455011.50 3.69556 0.09717 3.65735 0.09756 32.84443 0.87608 0.33370 0 2455012.50 3.69550 0.09731 3.67209 0.09720 33.93294 0.89818 0.32896 0 2455013.50 3.70100 0.09739 3.66938 0.09778 34.83075 0.92813 0.32457 0 2455014.50 3.73990 0.09715 3.66936 0.09776 35.70258 0.95115 0.32059 0 2455015.50 3.69036 0.09677 3.65952 0.09722 36.40599 0.96715 0.31705 0 2455016.50 3.67886 0.09736 3.66010 0.09723 37.12018 0.98609 0.31401 0 2455017.50 3.72578 0.09779 3.67951 0.09702 37.91803 0.99977 0.31151 0 2455018.50 3.74388 0.09698 3.69269 0.09775 38.52711 1.01984 0.30959 0 2455019.50 3.73446 0.09580 3.69244 0.09771 38.85275 1.02814 0.30828 0 2455020.50 3.73226 0.09565 3.71297 0.09755 39.24183 1.03096 0.30760 0 2455021.50 3.69495 0.09523 3.71329 0.09753 39.25526 1.03101 0.30756 0 2455022.50 3.70186 0.09480 3.71822 0.09727 39.15385 1.02430 0.30816 0 2455023.50 3.69073 0.09503 3.71081 0.09724 38.76472 1.01581 0.30940 0 2455024.50 3.65311 0.09553 3.71194 0.09724 38.31799 1.00385 0.31124 0 2455025.50 3.68528 0.09540 3.69696 0.09703 37.57452 0.98615 0.31367 0 2455026.50 3.71715 0.09660 3.69411 0.09727 36.84319 0.97008 0.31665 0 2455027.50 3.67556 0.09594 3.69372 0.09726 36.04276 0.94903 0.32013 0 2455028.50 3.70021 0.09645 3.72463 0.09740 35.46695 0.92745 0.32406 0 2455029.50 3.67862 0.09659 3.72388 0.09741 34.52853 0.90321 0.32840 0 2455030.50 3.65764 0.09603 3.71529 0.09711 33.48462 0.87524 0.33310 0 2455031.50 3.65629 0.09729 3.71463 0.09794 32.49652 0.85683 0.33810 0 2455032.50 3.66883 0.09704 3.71601 0.09797 31.52265 0.83104 0.34334 0 2455033.50 3.67599 0.09756 3.73732 0.09792 30.72101 0.80490 0.34879 0 2455034.50 3.68645 0.09703 3.72950 0.09690 29.69551 0.77152 0.35439 0 2455035.50 3.68675 0.09684 3.72958 0.09715 28.76201 0.74921 0.36010 0 2455036.50 3.71996 0.09708 3.72944 0.09719 27.85992 0.72603 0.36587 0 2455037.50 3.72914 0.09652 3.71871 0.09690 26.91864 0.70144 0.37168 0 2455038.50 3.73287 0.09734 3.68318 0.09628 25.84826 0.67571 0.37748 0 2455039.50 3.69862 0.09670 3.67649 0.09647 25.03103 0.65682 0.38325 0 2455040.50 3.68718 0.09714 3.67593 0.09651 24.29923 0.63796 0.38894 0 2455041.50 3.71238 0.09760 3.66795 0.09665 23.56224 0.62086 0.39455 0 2455042.50 3.73134 0.09733 3.69506 0.09732 23.08906 0.60812 0.40004 0 2455043.50 3.73532 0.09828 3.65060 0.09641 22.21235 0.58661 0.40540 0 2455044.50 3.74272 0.09798 3.64999 0.09643 21.64932 0.57194 0.41060 0 2455045.50 3.72345 0.09686 3.64876 0.09666 21.12099 0.55954 0.41564 0 2455046.50 3.72773 0.09766 3.67147 0.09640 20.76523 0.54525 0.42049 0 2455047.50 3.71458 0.09728 3.67872 0.09658 20.35356 0.53436 0.42514 0 2455048.50 3.67996 0.09657 3.67850 0.09712 19.93370 0.52631 0.42958 0 2455049.50 3.67030 0.09688 3.67243 0.09681 19.51535 0.51446 0.43380 0 2455050.50 3.66357 0.09696 3.67263 0.09682 19.16203 0.50517 0.43779 0 2455051.50 3.70217 0.09762 3.67705 0.09715 18.86007 0.49831 0.44155 0 2455052.50 3.64547 0.09656 3.66464 0.09719 18.50086 0.49065 0.44506 0 2455053.50 3.64125 0.09667 3.67489 0.09696 18.28345 0.48240 0.44832 0 2455054.50 3.67109 0.09645 3.69214 0.09739 18.12516 0.47808 0.45133 0 2455055.50 3.67709 0.09659 3.67978 0.09805 17.84641 0.47553 0.45408 0 2455056.50 3.67850 0.09716 3.68712 0.09666 17.68779 0.46368 0.45657 0 2455057.50 3.67311 0.09685 3.68712 0.09666 17.51708 0.45921 0.45879 0 2455058.50 3.67746 0.09715 3.69287 0.09705 17.39625 0.45719 0.46074 0 2455059.50 3.66461 0.09719 3.63929 0.09698 17.01970 0.45354 0.46242 0 2455060.50 3.67489 0.09696 3.65489 0.09634 16.98941 0.44781 0.46382 0 2455061.50 3.69213 0.09739 3.67262 0.09718 16.98921 0.44956 0.46494 0 2455062.50 3.67978 0.09805 3.68192 0.09760 16.97015 0.44986 0.46579 0 2455063.50 3.68712 0.09666 3.68565 0.09693 16.94577 0.44568 0.46637 0 2455064.50 3.69287 0.09705 3.68565 0.09693 16.92456 0.44512 0.46666 0 2455065.50 3.63929 0.09698 3.68767 0.09737 16.93290 0.44712 0.46667 0 2455066.50 3.65489 0.09634 3.72021 0.09796 17.10183 0.45031 0.46640 0 2455067.50 3.67262 0.09718 3.72058 0.09698 17.14360 0.44686 0.46586 0 2455068.50 3.68192 0.09760 3.76021 0.09762 17.38767 0.45139 0.46503 0 2455069.50 3.68565 0.09693 3.72486 0.09695 17.30607 0.45042 0.46393 0 2455070.50 3.68767 0.09737 3.67801 0.09660 17.19032 0.45148 0.46256 0 2455071.50 3.72021 0.09796 3.67801 0.09660 17.31377 0.45472 0.46090 0 2455072.50 3.72058 0.09698 3.71177 0.09731 17.61954 0.46191 0.45898 0 2455073.50 3.76021 0.09762 3.71348 0.09722 17.79745 0.46592 0.45678 0 2455074.50 3.72486 0.09695 3.71446 0.09712 17.99559 0.47054 0.45432 0 2455075.50 3.67801 0.09660 3.70467 0.09620 18.16546 0.47173 0.45160 0 2455076.50 3.71177 0.09731 3.69941 0.09647 18.38189 0.47933 0.44861 0 2455077.50 3.71348 0.09722 3.71636 0.09685 18.73576 0.48829 0.44537 0 2455078.50 3.71446 0.09712 3.71636 0.09685 19.03291 0.49603 0.44188 0 2455079.50 3.70467 0.09620 3.68908 0.09630 19.21663 0.50161 0.43815 0 2455080.50 3.69941 0.09647 3.68143 0.09714 19.52922 0.51529 0.43418 0 2455081.50 3.71636 0.09685 3.68651 0.09716 19.94013 0.52552 0.42998 0 2455082.50 3.68908 0.09630 3.68571 0.09722 20.35222 0.53685 0.42555 0 2455083.50 3.68143 0.09714 3.67440 0.09714 20.73870 0.54825 0.42092 0 2455084.50 3.68651 0.09716 3.67440 0.09714 21.22302 0.56106 0.41609 0 2455085.50 3.68571 0.09722 3.66033 0.09666 21.66095 0.57200 0.41108 0 2455086.50 3.67440 0.09714 3.64828 0.09691 22.14513 0.58823 0.40589 0 2455087.50 3.66033 0.09666 3.66669 0.09666 22.85473 0.60251 0.40054 0 2455088.50 3.64828 0.09691 3.68333 0.09650 23.59989 0.61830 0.39506 0 2455089.50 3.66669 0.09666 3.68333 0.09650 24.28314 0.63620 0.38946 0 2455090.50 3.68333 0.09650 3.67421 0.09715 24.94682 0.65962 0.38377 0 2455091.50 3.67421 0.09715 3.67794 0.09729 25.73888 0.68084 0.37801 0 2455092.50 3.67795 0.09729 3.67287 0.09709 26.51047 0.70079 0.37222 0 2455093.50 3.67287 0.09709 3.67287 0.09709 27.35745 0.72318 0.36641 0 2455094.50 3.66938 0.09738 3.66938 0.09738 28.21476 0.74878 0.36063 0 2455095.50 3.69421 0.09706 3.69421 0.09706 29.32818 0.77059 0.35491 0 2455096.50 3.71935 0.09765 3.71935 0.09765 30.48417 0.80034 0.34930 0 2455097.50 3.74841 0.09819 3.71935 0.09765 31.46052 0.82598 0.34384 0 2455098.50 3.76284 0.09864 3.74841 0.09819 32.70041 0.85663 0.33857 0 2455099.50 3.75630 0.09879 3.76284 0.09864 33.82214 0.88663 0.33355 0 2455100.50 3.76284 0.09822 3.76284 0.09864 34.80111 0.91230 0.32882 0 2455101.50 3.77091 0.09816 3.75630 0.09879 35.68405 0.93845 0.32445 0 2455102.50 3.77721 0.09760 3.76284 0.09822 36.63852 0.95637 0.32047 0 2455103.50 3.76095 0.09808 3.76284 0.09822 37.45766 0.97775 0.31695 0 2455104.50 3.75250 0.09821 3.77092 0.09816 38.26473 0.99608 0.31392 0 2455105.50 3.74945 0.09775 3.77092 0.09816 38.87685 1.01201 0.31144 0 2455106.50 3.70461 0.09719 3.77722 0.09760 39.42160 1.01866 0.30954 0 2455107.50 3.71678 0.09729 3.76095 0.09808 39.58134 1.03219 0.30825 0 2455108.50 3.72076 0.09754 3.76095 0.09808 39.75162 1.03663 0.30759 0 2455109.50 3.69165 0.09715 3.75250 0.09821 39.66750 1.03815 0.30757 0 2455110.50 3.67617 0.09651 3.75250 0.09821 39.50761 1.03396 0.30819 0 2455111.50 3.65134 0.09641 3.74945 0.09775 39.15634 1.02080 0.30944 0 2455112.50 3.66645 0.09698 3.70461 0.09719 38.22612 1.00285 0.31131 0 2455113.50 3.63966 0.09653 3.70461 0.09719 37.63229 0.98727 0.31376 0 2455114.50 3.65048 0.09659 3.71699 0.09730 37.04804 0.96981 0.31675 0 2455115.50 3.67048 0.09697 3.72050 0.09753 36.27822 0.95096 0.32024 0 2455116.50 3.69134 0.09812 3.72030 0.09752 35.39791 0.92785 0.32419 0 2455117.50 3.73526 0.09783 3.69074 0.09711 34.19235 0.89966 0.32854 0 2455118.50 3.74046 0.09770 3.69049 0.09710 33.23136 0.87433 0.33325 0 2455119.50 3.70416 0.09752 3.67491 0.09652 32.11914 0.84358 0.33825 1 2455120.50 3.68496 0.09698 3.65505 0.09642 30.97589 0.81717 0.34351 1 2455121.50 3.71499 0.09724 3.66638 0.09684 30.10856 0.79526 0.34896 1 2455122.50 3.72223 0.09796 3.66637 0.09682 29.16426 0.77019 0.35456 0 2455123.50 3.71819 0.09749 3.64436 0.09678 28.07730 0.74560 0.36027 0 2455124.50 3.76633 0.09808 3.65526 0.09671 27.27925 0.72172 0.36605 0 2455125.50 3.77972 0.09809 3.65563 0.09672 26.43666 0.69943 0.37186 0 2455126.50 3.77654 0.09865 3.67534 0.09686 25.76906 0.67909 0.37766 0 2455127.50 3.78902 0.09830 3.68902 0.09776 25.09337 0.66498 0.38342 0 2455128.50 3.80517 0.09828 3.71306 0.09750 24.52283 0.64396 0.38912 0 2455129.50 3.81208 0.09895 3.72020 0.09746 23.87727 0.62549 0.39472 0 2455130.50 3.86126 0.09830 3.71925 0.09744 23.22088 0.60838 0.40021 0 2455131.50 3.89153 0.10000 3.70198 0.09748 22.50698 0.59264 0.40556 0 2455132.50 3.86083 0.09944 3.69871 0.09722 21.92152 0.57623 0.41076 0 2455133.50 3.80131 0.09859 3.72071 0.09773 21.52181 0.56531 0.41579 0 2455134.50 3.74186 0.09789 3.72500 0.09793 21.05341 0.55350 0.42063 0 2455135.50 3.71354 0.09720 3.72509 0.09793 20.59660 0.54147 0.42528 0 2455136.50 3.68174 0.09670 3.73276 0.09795 20.21521 0.53046 0.42971 0 2455137.50 3.66730 0.09655 3.77327 0.09839 20.03960 0.52255 0.43392 0 2455138.50 3.67366 0.09650 3.79101 0.09828 19.76899 0.51249 0.43791 0 2455139.50 3.66608 0.09624 3.81430 0.09904 19.55418 0.50771 0.44166 0 2455140.50 3.65984 0.09758 3.82309 0.09855 19.29178 0.49730 0.44517 0 2455141.50 3.66932 0.09706 3.82388 0.09856 19.01660 0.49013 0.44842 0 2455142.50 3.68712 0.09657 3.84570 0.09875 18.87164 0.48459 0.45142 0 2455143.50 3.68388 0.09695 3.84832 0.09855 18.65722 0.47780 0.45416 0 2455144.50 3.66755 0.09683 3.88104 0.09807 18.61219 0.47032 0.45664 0 2455145.50 3.68168 0.09699 3.88849 0.09876 18.46866 0.46906 0.45885 0 2455146.50 3.69837 0.09741 3.86568 0.09834 18.20591 0.46314 0.46079 0 2455147.50 3.72009 0.09761 3.82282 0.09737 17.87438 0.45527 0.46246 0 2455148.50 3.72908 0.09844 3.82321 0.09735 17.76888 0.45244 0.46386 0 2455149.50 3.72883 0.09789 3.78602 0.09733 17.51152 0.45017 0.46498 0 2455150.50 3.75079 0.09852 3.76352 0.09633 17.34464 0.44397 0.46582 0 2455151.50 3.78144 0.09875 3.71660 0.09638 17.08712 0.44309 0.46638 0 2455152.50 3.80364 0.09849 3.70759 0.09674 17.02496 0.44421 0.46666 0 2455153.50 3.85453 0.09945 3.69285 0.09680 16.95698 0.44447 0.46667 0 2455154.50 3.85771 0.09881 3.68758 0.09692 16.95276 0.44557 0.46639 0 2455155.50 3.88327 0.09919 3.68792 0.09693 16.99466 0.44668 0.46584 0 2455156.50 3.88046 0.09820 3.68409 0.09759 17.03786 0.45134 0.46501 0 2455157.50 3.89783 0.09788 3.68834 0.09722 17.13920 0.45177 0.46390 0 2455158.50 3.88603 0.09775 3.69633 0.09724 17.27945 0.45458 0.46251 0 2455159.50 3.86945 0.09749 3.68205 0.09698 17.33694 0.45663 0.46085 0 2455160.50 3.83887 0.09646 3.66919 0.09711 17.42221 0.46109 0.45892 0 2455161.50 3.81630 0.09695 3.67686 0.09730 17.62744 0.46645 0.45671 0 2455162.50 3.79636 0.09576 3.67684 0.09728 17.81959 0.47147 0.45424 0 2455163.50 3.73856 0.09617 3.67652 0.09728 18.03440 0.47719 0.45151 0 2455164.50 3.73189 0.09685 3.69991 0.09741 18.39221 0.48421 0.44852 0 2455165.50 3.70394 0.09697 3.73825 0.09847 18.85487 0.49668 0.44527 0 2455166.50 3.69947 0.09729 3.73895 0.09804 19.15823 0.50235 0.44177 0 2455167.50 3.69636 0.09760 3.75314 0.09805 19.56091 0.51101 0.43803 0 2455168.50 3.69752 0.09729 3.79733 0.09859 20.15569 0.52331 0.43405 0 2455169.50 3.70058 0.09755 3.79759 0.09859 20.55359 0.53359 0.42984 0 2455170.50 3.68125 0.09699 3.82186 0.09917 21.11781 0.54798 0.42542 0 2455171.50 3.66987 0.09722 3.84235 0.09955 21.70160 0.56228 0.42078 0 2455172.50 3.67495 0.09742 3.85339 0.09984 22.27304 0.57711 0.41594 0 2455173.50 3.66877 0.09724 3.87481 0.09998 22.94766 0.59212 0.41092 0 2455174.50 3.69317 0.09734 3.88380 0.09991 23.59351 0.60692 0.40573 0 2455175.50 3.74113 0.09848 3.88386 0.09994 24.22842 0.62343 0.40038 0 2455176.50 3.74192 0.09808 3.91088 0.10021 25.07941 0.64265 0.39489 0 2455177.50 3.75379 0.09792 3.91077 0.10086 25.80558 0.66556 0.38929 0 2455178.50 3.80137 0.09855 3.92456 0.10088 26.67098 0.68559 0.38360 0 2455179.50 3.82578 0.09932 3.92561 0.10095 27.49785 0.70711 0.37784 0 2455180.50 3.83997 0.09957 3.90459 0.10033 28.21000 0.72488 0.37204 0 2455181.50 3.85263 0.10003 3.86321 0.09917 28.80317 0.73941 0.36623 0 2455182.50 3.87349 0.10011 3.84878 0.09931 29.62314 0.76438 0.36045 0 2455183.50 3.88425 0.10014 3.84878 0.09931 30.58520 0.78920 0.35474 0 2455184.50 3.91214 0.10044 3.84364 0.09892 31.53350 0.81158 0.34913 0 2455185.50 3.91269 0.10110 3.80144 0.09833 32.18563 0.83250 0.34367 0 2455186.50 3.92774 0.10108 3.79355 0.09877 33.12506 0.86242 0.33841 0 2455187.50 3.90578 0.10040 3.79355 0.09877 34.12872 0.88855 0.33340 0 2455188.50 3.86321 0.09917 3.77911 0.09883 34.98128 0.91484 0.32868 0 2455189.50 3.84878 0.09931 3.75752 0.09812 35.72386 0.93282 0.32432 0 2455190.50 3.84364 0.09892 3.75752 0.09812 36.61297 0.95603 0.32036 0 2455191.50 3.80144 0.09833 3.74101 0.09807 37.26389 0.97687 0.31685 0 2455192.50 3.79355 0.09877 3.74101 0.09807 37.98163 0.99568 0.31384 0 2455193.50 3.77911 0.09883 3.76015 0.09855 38.78257 1.01645 0.31138 0 2455194.50 3.75752 0.09812 3.76939 0.09884 39.35229 1.03187 0.30949 0 2455195.50 3.74101 0.09807 3.76939 0.09884 39.67783 1.04041 0.30822 0 2455196.50 3.76015 0.09855 3.77783 0.09871 39.93269 1.04336 0.30758 0 2455197.50 3.76939 0.09884 3.77783 0.09871 39.93270 1.04336 0.30758 0 2455198.50 3.77783 0.09871 3.78523 0.09950 39.84460 1.04732 0.30822 0 2455199.50 3.78523 0.09950 3.73862 0.09881 39.03112 1.03160 0.30949 0 2455200.50 3.73862 0.09881 3.73862 0.09881 38.56055 1.01916 0.31138 0 2455201.50 3.73856 0.09798 3.73856 0.09798 37.95684 0.99475 0.31384 0 2455202.50 3.73752 0.09741 3.73752 0.09741 37.22923 0.97026 0.31685 0 2455203.50 3.75734 0.09788 3.73752 0.09741 36.41815 0.94912 0.32036 0 2455204.50 3.75984 0.09769 3.75734 0.09788 35.72219 0.93057 0.32432 0 2455205.50 3.78321 0.09936 3.75734 0.09788 34.77980 0.90602 0.32868 0 2455206.50 3.84933 0.09992 3.75984 0.09769 33.82560 0.87886 0.33340 0 2455207.50 3.89563 0.10043 3.78321 0.09936 33.03488 0.86764 0.33841 0 2455208.50 3.93355 0.10080 3.78321 0.09936 32.03139 0.84129 0.34367 0 2455209.50 3.96291 0.10070 3.84933 0.09992 31.58024 0.81972 0.34913 0 2455210.50 3.99618 0.10038 3.89563 0.10043 30.95759 0.79808 0.35474 0 2455211.50 3.93673 0.10005 3.93355 0.10080 30.27570 0.77581 0.36045 0 2455212.50 3.93386 0.09890 3.93355 0.10080 29.32768 0.75151 0.36623 0 2455213.50 3.89086 0.09899 3.96291 0.10070 28.63143 0.72753 0.37204 0 2455214.50 3.87251 0.09907 3.99618 0.10038 27.99228 0.70315 0.37784 0 2455215.50 3.83251 0.09813 3.93673 0.10005 26.75379 0.67996 0.38360 0 2455216.50 3.82468 0.09752 3.93673 0.10005 25.97692 0.66022 0.38929 0 2455217.50 3.80046 0.09824 3.93386 0.09890 25.22684 0.63425 0.39489 0 2455218.50 3.79826 0.09830 3.89086 0.09899 24.27216 0.61752 0.40038 0 2455219.50 3.81923 0.09945 3.87251 0.09907 23.52498 0.60187 0.40572 0 2455220.50 3.86872 0.09896 3.83251 0.09813 22.69718 0.58115 0.41092 0 2455221.50 3.84083 0.09967 3.83251 0.09813 22.15237 0.56720 0.41594 0 2455222.50 3.83202 0.09938 3.82468 0.09752 21.60184 0.55078 0.42078 0 2455223.50 3.83135 0.09960 3.80046 0.09824 20.99957 0.54283 0.42541 0 2455224.50 3.84419 0.10017 3.79826 0.09830 20.55725 0.53203 0.42984 0 2455225.50 3.82847 0.09988 3.81924 0.09945 20.27198 0.52786 0.43405 0 2455226.50 3.82651 0.09999 3.86872 0.09896 20.16329 0.51575 0.43803 0 2455227.50 3.84823 0.10009 3.86872 0.09896 19.82318 0.50705 0.44177 0 2455228.50 3.82865 0.09890 3.84083 0.09967 19.37227 0.50269 0.44527 0 2455229.50 3.79715 0.09883 3.83202 0.09938 19.04891 0.49404 0.44852 0 2455230.50 3.75226 0.09892 3.83170 0.09960 18.79565 0.48859 0.45151 0 2455231.50 3.75617 0.09873 3.84525 0.10017 18.63578 0.48549 0.45424 0 2455232.50 3.78951 0.09863 3.83049 0.09989 18.36401 0.47889 0.45671 0 2455233.50 3.80621 0.09988 3.82888 0.10000 18.18050 0.47483 0.45892 0 2455234.50 3.88009 0.10160 3.82958 0.10000 18.03157 0.47086 0.46085 0 2455235.50 3.93875 0.10215 3.85208 0.10008 18.00752 0.46787 0.46251 0 2455236.50 4.04989 0.10382 3.83145 0.09893 17.80422 0.45974 0.46390 0 2455237.50 4.02059 0.10262 3.80072 0.09889 17.57722 0.45734 0.46501 0 2455238.50 4.04823 0.10342 3.75864 0.09899 17.32056 0.45618 0.46584 0 2455239.50 4.07704 0.10294 3.76730 0.09890 17.31924 0.45466 0.46639 0 2455240.50 4.10665 0.10381 3.80092 0.09880 17.45319 0.45365 0.46667 0 2455241.50 4.08463 0.10272 3.80198 0.09881 17.45840 0.45373 0.46666 0 2455242.50 4.05778 0.10118 3.81661 0.09993 17.54690 0.45945 0.46638 0 2455243.50 3.97728 0.10063 3.87692 0.10129 17.86723 0.46681 0.46582 0 2455244.50 4.00420 0.10074 3.92496 0.10175 18.15411 0.47062 0.46498 0 2455245.50 4.00254 0.10094 4.02124 0.10315 18.68923 0.47940 0.46386 0 2455246.50 4.02738 0.10110 3.99740 0.10205 18.69065 0.47717 0.46246 0 2455247.50 3.98169 0.09999 4.02254 0.10270 18.94466 0.48368 0.46079 0 2455248.50 3.96077 0.10082 4.05612 0.10251 19.26478 0.48686 0.45885 0 2455249.50 3.96860 0.10026 4.05494 0.10248 19.44613 0.49147 0.45664 0 2455250.50 3.93196 0.10080 4.08104 0.10311 19.78545 0.49989 0.45416 0 2455251.50 3.91691 0.10075 4.07081 0.10220 19.97627 0.50152 0.45142 0 2455252.50 3.90798 0.10045 4.06057 0.10113 20.19363 0.50291 0.44842 0 2455253.50 3.89214 0.10015 4.00071 0.10071 20.18805 0.50819 0.44517 0 2455254.50 3.91569 0.09994 4.02554 0.10083 20.63708 0.51693 0.44166 0 2455255.50 3.87012 0.09945 4.02654 0.10084 20.99719 0.52585 0.43791 0 2455256.50 3.84309 0.09959 4.02123 0.10105 21.35649 0.53665 0.43393 0 2455257.50 3.82498 0.09979 4.03881 0.10135 21.87262 0.54885 0.42971 0 2455258.50 3.86988 0.10047 4.00383 0.10048 22.13775 0.55558 0.42528 0 2455259.50 3.89520 0.10012 3.98436 0.10112 22.51924 0.57155 0.42063 0 2455260.50 3.88743 0.10028 3.97715 0.10064 23.00514 0.58215 0.41579 0 2455261.50 3.85710 0.09938 3.97752 0.10066 23.57394 0.59659 0.41076 0 2455262.50 3.84578 0.09946 3.95237 0.10092 24.02920 0.61356 0.40556 0 2455263.50 3.86927 0.09957 3.95313 0.10087 24.68107 0.62974 0.40021 0 2455264.50 3.88334 0.09929 3.93176 0.10093 25.23510 0.64780 0.39472 0 2455265.50 3.90499 0.09939 3.91802 0.10069 25.87640 0.66500 0.38912 0 2455266.50 3.96689 0.10067 3.91911 0.10071 26.65837 0.68506 0.38342 0 2455267.50 3.98560 0.10052 3.94316 0.10056 27.64676 0.70502 0.37766 0 2455268.50 4.02255 0.10038 3.90803 0.10007 28.26187 0.72366 0.37186 0 2455269.50 4.06970 0.10094 3.89166 0.10021 29.04343 0.74788 0.36605 0 2455270.50 4.07270 0.10095 3.89370 0.10024 29.99823 0.77227 0.36027 0 2455271.50 4.08714 0.10110 3.88070 0.10025 30.86913 0.79747 0.35456 0 2455272.50 4.06885 0.10132 3.88716 0.10037 31.92160 0.82427 0.34896 0 2455273.50 4.06616 0.10194 3.89288 0.10054 32.99142 0.85202 0.34351 0 2455274.50 4.05362 0.10158 3.89278 0.10055 34.02327 0.87884 0.33825 0 2455275.50 4.03417 0.10176 3.88400 0.10074 34.97377 0.90713 0.33325 0 2455276.50 3.99410 0.10139 3.87113 0.09935 35.86345 0.92045 0.32854 0 2455277.50 3.98787 0.10112 3.87171 0.09935 36.83851 0.94532 0.32419 0 2455278.50 4.01209 0.10105 3.84660 0.09956 37.50777 0.97078 0.32024 0 2455279.50 3.96793 0.10166 3.84663 0.09956 38.34021 0.99236 0.31675 0 2455280.50 3.95471 0.10146 3.88032 0.10021 39.41708 1.01794 0.31376 0 2455281.50 3.97686 0.10132 3.88886 0.09972 40.12722 1.02893 0.31131 0 2455282.50 3.95111 0.10077 3.88907 0.09973 40.61443 1.04154 0.30944 0 2455283.50 3.94267 0.10087 3.92095 0.09993 41.28104 1.05208 0.30819 0 2455284.50 3.93019 0.10066 3.94743 0.10032 41.72802 1.06045 0.30757 0 2455285.50 3.90120 0.10029 3.94675 0.10030 41.71549 1.06018 0.30759 0 2455286.50 3.89116 0.10084 3.98190 0.09996 41.90679 1.05202 0.30825 0 2455287.50 3.88193 0.10102 3.98178 0.09994 41.55663 1.04308 0.30954 0 2455288.50 3.87869 0.09934 4.00872 0.10005 41.32862 1.03145 0.31144 0 2455289.50 3.84694 0.09960 3.97153 0.09990 40.30056 1.01368 0.31392 0 2455290.50 3.88376 0.10041 3.97153 0.09990 39.53520 0.99443 0.31695 0 2455291.50 3.89031 0.09983 3.96175 0.09893 38.57534 0.96328 0.32047 0 2455292.50 3.92370 0.10002 3.96175 0.09893 37.63588 0.93982 0.32445 0 2455293.50 3.94487 0.10027 3.93924 0.09917 36.43264 0.91722 0.32882 0 2455294.50 3.98169 0.09993 3.93080 0.09852 35.33191 0.88551 0.33355 0 2455295.50 4.00872 0.10005 3.93080 0.09852 34.29164 0.85944 0.33857 0 2455296.50 3.97153 0.09990 3.91092 0.09875 33.08100 0.83531 0.34384 0 2455297.50 3.96175 0.09893 3.90774 0.09825 32.02829 0.80530 0.34930 0 2455298.50 3.93924 0.09917 3.90542 0.09837 31.00497 0.78097 0.35491 0 2455299.50 3.93080 0.09852 3.90542 0.09837 30.02975 0.75641 0.36063 0 2455300.50 3.91092 0.09875 3.89526 0.09841 29.01403 0.73302 0.36641 0 2455301.50 3.90774 0.09825 3.86829 0.09890 27.92107 0.71388 0.37221 0 2455302.50 3.90542 0.09837 3.86829 0.09890 27.07100 0.69215 0.37801 0 2455303.50 3.89526 0.09841 3.87789 0.09934 26.32979 0.67452 0.38377 0 2455304.50 3.86829 0.09890 3.89306 0.09934 25.66591 0.65491 0.38946 0 2455305.50 3.87789 0.09934 3.90902 0.09999 25.04603 0.64069 0.39506 0 2455306.50 3.89306 0.09934 3.92199 0.10076 24.44609 0.62803 0.40054 0 2455307.50 3.90902 0.09999 3.92199 0.10076 23.80661 0.61160 0.40589 0 2455308.50 3.92199 0.10076 3.91324 0.09985 23.15768 0.59089 0.41107 0 2455309.50 3.91324 0.09985 3.92095 0.10050 22.64714 0.58048 0.41609 0 2455310.50 3.92095 0.10050 3.93643 0.09932 22.21765 0.56060 0.42092 0 2455311.50 3.93643 0.09932 3.95441 0.09930 21.83597 0.54832 0.42555 0 2455312.50 3.95441 0.09930 3.95441 0.09930 21.38923 0.53710 0.42998 0 2455313.50 3.96144 0.10164 3.96144 0.10164 21.01465 0.53916 0.43418 0 2455314.50 3.96762 0.10054 3.96762 0.10054 20.66760 0.52372 0.43815 0 2455315.50 3.93985 0.10022 3.93985 0.10022 20.17754 0.51326 0.44188 0 2455316.50 3.95508 0.10085 3.95508 0.10085 19.93929 0.50842 0.44537 0 2455317.50 3.94309 0.10084 3.94309 0.10084 19.59271 0.50104 0.44861 0 2455318.50 3.98560 0.10063 3.94309 0.10084 19.33454 0.49444 0.45160 0 2455319.50 3.93257 0.10004 3.98560 0.10063 19.30921 0.48754 0.45432 0 2455320.50 3.95765 0.10002 3.93257 0.10004 18.84749 0.47946 0.45678 0 2455321.50 4.02689 0.10116 3.95765 0.10002 18.78673 0.47479 0.45898 0 2455322.50 4.06499 0.10282 4.02689 0.10116 18.95610 0.47619 0.46090 0 2455323.50 4.06934 0.10264 4.06499 0.10282 18.99903 0.48056 0.46256 0 2455324.50 4.08567 0.10240 4.06934 0.10264 18.90655 0.47689 0.46393 0 2455325.50 4.03802 0.10186 4.08567 0.10240 18.89262 0.47351 0.46503 0 2455326.50 4.00817 0.10107 4.08567 0.10240 18.82585 0.47183 0.46586 0 2455327.50 3.97416 0.10061 4.03802 0.10186 18.56281 0.46825 0.46640 0 2455328.50 3.90664 0.09948 4.00817 0.10107 18.40456 0.46410 0.46667 0 2455329.50 3.87190 0.09938 3.97416 0.10061 18.24941 0.46198 0.46666 0 2455330.50 3.82633 0.09938 3.90664 0.09948 17.96181 0.45737 0.46637 0 2455331.50 3.78914 0.09917 3.87190 0.09938 17.84576 0.45806 0.46579 0 2455332.50 3.78615 0.09848 3.82633 0.09938 17.70023 0.45974 0.46495 0 2455333.50 3.77923 0.09946 3.82633 0.09938 17.78634 0.46198 0.46382 0 2455334.50 3.80621 0.09888 3.78914 0.09917 17.72050 0.46380 0.46242 0 2455335.50 3.80700 0.09860 3.78615 0.09848 17.83563 0.46393 0.46074 0 2455336.50 3.84223 0.09854 3.77923 0.09946 17.95469 0.47253 0.45879 0 2455337.50 3.83159 0.09886 3.80621 0.09888 18.25905 0.47437 0.45657 0 2455338.50 3.83557 0.09974 3.80700 0.09860 18.46339 0.47820 0.45408 0 2455339.50 3.87330 0.09937 3.84223 0.09854 18.86198 0.48376 0.45133 0 2455340.50 3.89557 0.10055 3.84223 0.09854 19.11601 0.49027 0.44833 0 2455341.50 3.91380 0.10045 3.83159 0.09886 19.34367 0.49912 0.44506 0 2455342.50 3.89857 0.10083 3.83557 0.09974 19.67309 0.51157 0.44155 0 2455343.50 3.89331 0.10091 3.87330 0.09937 20.20904 0.51847 0.43779 0 2455344.50 3.91276 0.10032 3.89557 0.10055 20.70109 0.53434 0.43380 0 2455345.50 3.89771 0.10088 3.91380 0.10045 21.20871 0.54436 0.42958 0 2455346.50 3.90236 0.09929 3.91380 0.10045 21.65411 0.55579 0.42514 0 2455347.50 3.87477 0.09888 3.89857 0.10083 22.04959 0.57027 0.42049 0 2455348.50 3.90639 0.09978 3.89331 0.10091 22.53654 0.58411 0.41564 0 2455349.50 3.95007 0.09909 3.91276 0.10032 23.20780 0.59505 0.41061 0 2455350.50 3.90003 0.09862 3.89771 0.10088 23.71583 0.61378 0.40540 0 2455351.50 3.87110 0.09842 3.89771 0.10088 24.35528 0.63033 0.40004 0 2455352.50 3.87496 0.09755 3.90236 0.09929 25.06796 0.63779 0.39455 0 2455353.50 3.83979 0.09621 3.87477 0.09888 25.61361 0.65366 0.38894 0 2455354.50 3.81355 0.09575 3.90639 0.09978 26.59627 0.67933 0.38325 0 2455355.50 3.77391 0.09641 3.95007 0.09909 27.72120 0.69544 0.37748 0 2455356.50 3.77703 0.09712 3.95007 0.09909 28.59326 0.71731 0.37168 0 2455357.50 3.80933 0.09856 3.90003 0.09862 29.13423 0.73673 0.36587 0 2455358.50 3.83153 0.09791 3.87276 0.09846 29.86610 0.75929 0.36010 0 2455359.50 3.86853 0.09850 3.87975 0.09765 30.89180 0.77753 0.35439 0 2455360.50 3.86077 0.09993 3.88277 0.09772 31.91651 0.80322 0.34879 0 2455361.50 3.84853 0.10026 3.85195 0.09663 32.67579 0.81969 0.34334 0 2455362.50 3.85703 0.09920 3.82928 0.09622 33.49940 0.84172 0.33810 0 2455363.50 3.85129 0.09930 3.83302 0.09633 34.54562 0.86816 0.33310 0 2455364.50 3.88052 0.10000 3.79992 0.09710 35.23348 0.90036 0.32840 0 2455365.50 3.90009 0.10034 3.80419 0.09771 36.22453 0.93044 0.32406 0 2455366.50 3.89594 0.10007 3.80830 0.09780 37.16076 0.95433 0.32013 0 2455367.50 3.89006 0.10032 3.82728 0.09888 38.17131 0.98622 0.31665 0 2455368.50 3.88058 0.09942 3.82947 0.09892 38.92125 1.00542 0.31367 0 2455369.50 3.90236 0.10002 3.85407 0.09853 39.78514 1.01707 0.31124 0 2455370.50 3.95961 0.10107 3.88453 0.09893 40.57955 1.03344 0.30940 0 2455371.50 3.94193 0.10009 3.88602 0.09897 40.92091 1.04215 0.30816 0 2455372.50 3.93429 0.10116 3.88033 0.10031 41.02117 1.06047 0.30756 0 2455373.50 3.92835 0.10065 3.88188 0.10034 41.02705 1.06052 0.30760 0 2455374.50 3.94083 0.10072 3.89826 0.10089 41.01847 1.06158 0.30828 0 2455375.50 3.91288 0.10025 3.91159 0.10007 40.81102 1.04405 0.30959 0 2455376.50 3.92658 0.10009 3.91500 0.10012 40.34488 1.03178 0.31151 0 2455377.50 3.99166 0.10152 3.93855 0.10078 39.94423 1.02206 0.31401 0 2455378.50 3.98744 0.10118 3.96673 0.10136 39.46223 1.00831 0.31705 0 2455379.50 4.00872 0.10037 3.97101 0.10142 38.63767 0.98684 0.32059 0 2455380.50 3.98848 0.10131 3.98226 0.10206 37.80076 0.96880 0.32457 0 2455381.50 3.96175 0.10014 3.98576 0.10214 36.83154 0.94381 0.32896 0 2455382.50 3.93893 0.10082 3.97870 0.10189 35.73040 0.91505 0.33370 0 2455383.50 3.92413 0.10034 3.97926 0.10159 34.68201 0.88541 0.33873 0 2455384.50 3.88376 0.09990 3.98230 0.10163 33.65253 0.85883 0.34400 0 2455385.50 3.90652 0.09997 4.00862 0.10217 32.82312 0.83655 0.34947 0 2455386.50 3.91685 0.09978 4.02215 0.10223 31.90048 0.81081 0.35508 0 2455387.50 3.91055 0.10091 4.01763 0.10282 30.86237 0.78983 0.36080 0 2455388.50 3.95777 0.10164 4.01913 0.10286 29.90759 0.76545 0.36659 0 2455389.50 3.96927 0.10099 4.01546 0.10210 28.95564 0.73622 0.37239 0 2455390.50 4.01099 0.10200 3.97444 0.10241 27.78779 0.71601 0.37819 0 2455391.50 4.03025 0.10235 3.99579 0.10184 27.10546 0.69081 0.38395 0 2455392.50 4.03007 0.10306 3.99714 0.10186 26.32867 0.67094 0.38964 0 2455393.50 4.01674 0.10273 3.99895 0.10237 25.60019 0.65534 0.39523 0 2455394.50 4.01563 0.10210 4.01150 0.10214 24.98327 0.63612 0.40071 0 2455395.50 4.04952 0.10304 4.02675 0.10210 24.42309 0.61927 0.40605 0 2455396.50 4.05588 0.10285 4.09109 0.10276 24.19173 0.60767 0.41123 0 2455397.50 4.03197 0.10325 4.09262 0.10278 23.62152 0.59324 0.41624 0 2455398.50 4.02921 0.10247 4.07181 0.10162 22.96594 0.57316 0.42107 0 2455399.50 3.98089 0.10261 4.09607 0.10076 22.60345 0.55605 0.42569 0 2455400.50 4.00499 0.10200 4.07325 0.10102 22.01851 0.54607 0.43011 0 2455401.50 4.00438 0.10252 4.04921 0.10105 21.46788 0.53572 0.43430 0 2455402.50 4.01881 0.10228 4.04921 0.10105 21.08126 0.52607 0.43827 0 2455403.50 4.03239 0.10222 4.05368 0.10019 20.75010 0.51286 0.44199 0 2455404.50 4.09503 0.10281 4.00371 0.09968 20.17509 0.50229 0.44548 0 2455405.50 4.07258 0.10162 3.97294 0.09929 19.73264 0.49313 0.44871 0 2455406.50 4.09607 0.10076 3.98640 0.09940 19.53931 0.48719 0.45169 0 2455407.50 4.07325 0.10102 4.01570 0.09964 19.44820 0.48256 0.45440 0 2455408.50 4.04921 0.10105 4.07845 0.10124 19.54053 0.48507 0.45686 0 2455409.50 4.05368 0.10019 4.07845 0.10124 19.35484 0.48046 0.45904 0 2455410.50 4.00371 0.09968 4.09582 0.10231 19.27601 0.48148 0.46096 0 2455411.50 3.97294 0.09929 4.09918 0.10197 19.15500 0.47650 0.46260 0 2455412.50 3.98640 0.09940 4.09074 0.10280 19.00291 0.47754 0.46397 0 2455413.50 4.01570 0.09964 4.10891 0.10330 18.99770 0.47761 0.46506 0 2455414.50 4.07845 0.10124 4.11374 0.10321 18.95352 0.47554 0.46588 0 2455415.50 4.09582 0.10231 4.13435 0.10290 19.00465 0.47300 0.46642 0 2455416.50 4.09919 0.10197 4.13435 0.10290 18.98365 0.47248 0.46667 0 2455417.50 4.09074 0.10280 4.14536 0.10298 19.03595 0.47291 0.46665 0 2455418.50 4.10891 0.10330 4.12261 0.10271 18.95588 0.47228 0.46635 0 2455419.50 4.11374 0.10321 4.09717 0.10253 18.88581 0.47261 0.46577 0 2455420.50 4.13435 0.10290 4.03704 0.10115 18.67741 0.46798 0.46491 0 2455421.50 4.14536 0.10298 4.01753 0.10080 18.67825 0.46865 0.46378 0 2455422.50 4.12261 0.10271 4.00365 0.10119 18.72750 0.47333 0.46237 0 2455423.50 4.09717 0.10253 4.00365 0.10119 18.86479 0.47680 0.46068 0 2455424.50 4.03704 0.10115 3.99808 0.10103 18.99970 0.48013 0.45872 0 2455425.50 4.01753 0.10080 3.99759 0.10058 19.18323 0.48265 0.45650 0 2455426.50 4.00365 0.10119 3.95869 0.10033 19.20585 0.48676 0.45400 0 2455427.50 3.99808 0.10103 3.95276 0.09964 19.41216 0.48934 0.45125 0 2455428.50 3.99759 0.10058 3.92615 0.09948 19.54192 0.49513 0.44823 0 2455429.50 3.95869 0.10033 3.91740 0.10036 19.78614 0.50688 0.44496 0 2455430.50 3.95276 0.09964 3.91740 0.10036 20.10300 0.51500 0.44144 0 2455431.50 3.92615 0.09948 3.90040 0.09921 20.36147 0.51793 0.43767 0 2455432.50 3.91740 0.10036 3.90009 0.09889 20.73719 0.52581 0.43367 0 2455433.50 3.90040 0.09921 3.90756 0.09921 21.18801 0.53793 0.42945 0 2455434.50 3.90009 0.09889 3.88260 0.09909 21.49562 0.54863 0.42500 0 2455435.50 3.90756 0.09921 3.85514 0.09818 21.81909 0.55568 0.42034 0 2455436.50 3.88260 0.09909 3.85514 0.09818 22.33189 0.56874 0.41549 0 2455437.50 3.85514 0.09818 3.85948 0.09888 22.90933 0.58692 0.41045 0 2455438.50 3.85948 0.09888 3.88071 0.09940 23.63125 0.60527 0.40524 0 2455439.50 3.88071 0.09940 3.91269 0.09990 24.46927 0.62473 0.39988 0 2455440.50 3.91269 0.09990 3.98401 0.10080 25.61460 0.64805 0.39438 0 2455441.50 3.98401 0.10080 3.98401 0.10080 26.35922 0.66689 0.38877 0 2455442.50 4.03154 0.10171 4.03154 0.10171 27.47349 0.69311 0.38307 0 2455443.50 4.05888 0.10212 4.05888 0.10212 28.51162 0.71732 0.37730 0 2455444.50 4.04181 0.10225 4.04181 0.10225 29.28544 0.74085 0.37150 0 2455445.50 4.06389 0.10146 4.04181 0.10225 30.22270 0.76456 0.36570 0 2455446.50 4.04499 0.10151 4.06389 0.10146 31.37081 0.78321 0.35992 0 2455447.50 4.01307 0.10094 4.04499 0.10151 32.23906 0.80901 0.35422 0 2455448.50 3.99258 0.10030 4.01307 0.10094 33.01965 0.83054 0.34862 0 2455449.50 3.96921 0.10020 4.01307 0.10094 34.07507 0.85709 0.34318 0 2455450.50 3.97527 0.09970 3.99258 0.10030 34.96045 0.87824 0.33794 0 2455451.50 4.00010 0.10133 3.96921 0.10020 35.80500 0.90386 0.33295 0 2455452.50 4.03031 0.10212 3.96921 0.10020 36.83429 0.92984 0.32827 0 2455453.50 4.05282 0.10178 3.97527 0.09970 37.88322 0.95011 0.32394 0 2455454.50 4.03331 0.10087 4.00010 0.10133 39.06008 0.98945 0.32001 0 2455455.50 4.02744 0.10145 4.00010 0.10133 39.91982 1.01123 0.31655 0 2455456.50 4.04126 0.10163 4.03031 0.10212 40.98418 1.03849 0.31359 0 2455457.50 4.07307 0.10282 4.03031 0.10212 41.62197 1.05465 0.31118 0 2455458.50 4.06842 0.10247 4.05282 0.10178 42.35046 1.06351 0.30935 0 2455459.50 4.10408 0.10222 4.03331 0.10087 42.47959 1.06237 0.30813 0 2455460.50 4.10022 0.10266 4.03331 0.10087 42.64070 1.06639 0.30755 0 2455461.50 4.09643 0.10174 4.02744 0.10145 42.56226 1.07216 0.30761 0 2455462.50 4.09123 0.10250 4.02744 0.10145 42.36924 1.06730 0.30831 0 2455463.50 4.06065 0.10095 4.04126 0.10163 42.15040 1.06001 0.30964 0 2455464.50 4.01778 0.10066 4.07175 0.10277 41.94180 1.05864 0.31158 0 2455465.50 4.03270 0.10126 4.07037 0.10273 41.25878 1.04128 0.31409 0 2455466.50 4.06992 0.10135 4.07097 0.10243 40.47342 1.01833 0.31715 1 2455467.50 4.07266 0.10026 4.07180 0.10241 39.58974 0.99575 0.32070 1 2455468.50 4.08068 0.10149 4.10580 0.10221 38.94257 0.96945 0.32470 1 2455469.50 4.09186 0.10123 4.09534 0.10245 37.81187 0.94587 0.32910 1 2455470.50 4.05913 0.10110 4.09459 0.10241 36.73810 0.91890 0.33385 1 2455471.50 4.04497 0.10083 4.09485 0.10181 35.65614 0.88655 0.33888 1 2455472.50 4.02212 0.10030 4.10286 0.10247 34.63808 0.86506 0.34416 1 2455473.50 3.96315 0.10000 4.07012 0.10122 33.29432 0.82803 0.34964 0 2455474.50 3.94884 0.10065 4.07091 0.10125 32.25555 0.80222 0.35526 0 2455475.50 3.91019 0.10027 4.03508 0.10089 30.96614 0.77422 0.36098 0 2455476.50 3.85379 0.09743 4.03699 0.10118 30.01141 0.75215 0.36676 0 2455477.50 3.86994 0.09788 4.03724 0.10117 29.08490 0.72884 0.37257 0 2455478.50 3.87061 0.09919 4.06033 0.10110 28.36175 0.70619 0.37837 0 2455479.50 3.87777 0.09955 4.06380 0.10053 27.54163 0.68132 0.38412 0 2455480.50 3.90627 0.10013 4.06453 0.10145 26.74881 0.66765 0.38981 0 2455481.50 3.91728 0.09914 4.06387 0.10145 25.99343 0.64889 0.39540 0 2455482.50 3.90994 0.09900 4.06847 0.10137 25.31715 0.63082 0.40087 0 2455483.50 3.95080 0.10010 4.04774 0.10081 24.53091 0.61094 0.40621 0 2455484.50 4.02701 0.10124 4.01387 0.10087 23.71706 0.59604 0.41139 0 2455485.50 4.09753 0.10197 3.98039 0.10035 22.95715 0.57876 0.41639 0 2455486.50 4.11607 0.10215 3.94034 0.09995 22.20917 0.56337 0.42121 0 2455487.50 4.07154 0.10143 3.93972 0.09995 21.72655 0.55120 0.42583 0 2455488.50 4.08928 0.10206 3.93832 0.10007 21.27609 0.54061 0.43024 0 2455489.50 4.13864 0.10237 3.87903 0.09915 20.55376 0.52538 0.43443 0 2455490.50 4.09594 0.10198 3.84773 0.09786 20.02151 0.50919 0.43838 0 2455491.50 4.07325 0.10137 3.85863 0.09807 19.74180 0.50174 0.44210 0 2455492.50 4.04560 0.10100 3.87273 0.09887 19.50609 0.49798 0.44558 0 2455493.50 4.04408 0.10067 3.87277 0.09886 19.22698 0.49081 0.44880 0 2455494.50 4.04989 0.10095 3.92111 0.09917 19.21190 0.48590 0.45177 0 2455495.50 4.04096 0.10139 3.97597 0.10048 19.24908 0.48644 0.45448 0 2455496.50 4.03863 0.10156 3.97826 0.10099 19.05457 0.48370 0.45693 0 2455497.50 4.03411 0.10046 3.99472 0.10081 18.95232 0.47826 0.45911 0 2455498.50 3.97881 0.10092 4.01901 0.10189 18.91007 0.47939 0.46101 0 2455499.50 3.93600 0.10040 4.07283 0.10233 19.02806 0.47809 0.46265 0 2455500.50 3.91740 0.09990 4.07356 0.10235 18.92002 0.47537 0.46401 0 2455501.50 3.92882 0.09955 4.10090 0.10284 18.95830 0.47540 0.46509 1 2455502.50 3.85229 0.09819 4.09161 0.10241 18.84988 0.47180 0.46590 1 2455503.50 3.84278 0.09820 4.08950 0.10215 18.79748 0.46956 0.46643 1 2455504.50 3.84984 0.09821 4.08485 0.10211 18.75606 0.46885 0.46668 1 2455505.50 3.87430 0.09863 4.12028 0.10246 18.92118 0.47054 0.46665 1 2455506.50 3.95031 0.09891 4.12848 0.10178 18.98400 0.46803 0.46634 1 2455507.50 4.02078 0.10070 4.12894 0.10178 19.03409 0.46920 0.46575 1 2455508.50 4.01570 0.10212 4.09607 0.10216 18.95301 0.47269 0.46488 0 2455509.50 4.04444 0.10187 4.08003 0.10120 18.97203 0.47059 0.46374 0 2455510.50 4.05723 0.10289 4.06547 0.10094 19.02062 0.47224 0.46232 0 2455511.50 4.09735 0.10292 4.03535 0.10099 19.01877 0.47599 0.46063 0 2455512.50 4.10255 0.10326 4.01546 0.10067 19.08766 0.47854 0.45866 0 2455513.50 4.08022 0.10253 4.01118 0.10055 19.25457 0.48268 0.45642 0 2455514.50 4.09747 0.10248 4.01792 0.10006 19.50016 0.48564 0.45392 0 2455515.50 4.08298 0.10213 4.01770 0.10006 19.73886 0.49158 0.45116 0 2455516.50 4.11289 0.10250 4.00498 0.10093 19.94285 0.50259 0.44813 0 2455517.50 4.14096 0.10171 3.97369 0.10020 20.07981 0.50635 0.44485 0 2455518.50 4.10396 0.10243 3.95171 0.09991 20.28933 0.51296 0.44133 0 2455519.50 4.09129 0.10127 3.92514 0.10050 20.50177 0.52495 0.43755 0 2455520.50 4.07209 0.10102 3.89883 0.10045 20.74252 0.53443 0.43355 0 2455521.50 4.03111 0.10101 3.89951 0.10049 21.15746 0.54520 0.42931 0 2455522.50 4.00848 0.10047 3.89100 0.09922 21.55627 0.54969 0.42486 0 2455523.50 4.00414 0.10030 3.88026 0.09943 21.97652 0.56314 0.42020 0 2455524.50 4.01404 0.09997 3.90394 0.10000 22.63110 0.57969 0.41534 0 2455525.50 4.01037 0.10093 3.94725 0.10071 23.44825 0.59827 0.41029 0 2455526.50 3.98083 0.10017 3.99405 0.10210 24.34095 0.62221 0.40508 0 2455527.50 3.95765 0.09991 3.99362 0.10212 24.99619 0.63917 0.39971 0 2455528.50 3.92456 0.10065 4.00023 0.10196 25.74109 0.65611 0.39421 0 2455529.50 3.90535 0.10077 4.04126 0.10262 26.76188 0.67958 0.38860 0 2455530.50 3.89618 0.09933 4.08120 0.10257 27.83751 0.69962 0.38289 0 2455531.50 3.88303 0.09954 4.08120 0.10257 28.69543 0.72118 0.37713 0 2455532.50 3.90615 0.10010 4.07821 0.10237 29.57748 0.74247 0.37132 0 2455533.50 3.94707 0.10082 4.07851 0.10243 30.52677 0.76663 0.36552 0 2455534.50 3.99294 0.10216 4.09136 0.10229 31.61373 0.79037 0.35975 0 2455535.50 4.00010 0.10196 4.09136 0.10229 32.64051 0.81604 0.35404 0 2455536.50 4.04126 0.10262 4.05686 0.10170 33.41244 0.83757 0.34845 0 2455537.50 4.08120 0.10257 4.07123 0.10172 34.60200 0.86450 0.34301 0 2455538.50 4.07821 0.10237 4.07123 0.10172 35.68233 0.89149 0.33778 0 2455539.50 4.07851 0.10243 4.11882 0.10175 37.18770 0.91866 0.33280 0 2455540.50 4.09136 0.10229 4.08824 0.10106 37.97083 0.93862 0.32813 0 2455541.50 4.05686 0.10170 4.08824 0.10106 38.99026 0.96382 0.32381 0 2455542.50 4.07123 0.10172 4.06261 0.10068 39.69857 0.98379 0.31990 0 2455543.50 4.11882 0.10175 4.05851 0.09952 40.52797 0.99375 0.31645 0 2455544.50 4.08824 0.10106 4.05851 0.09952 41.29258 1.01250 0.31351 0 2455545.50 4.06261 0.10068 4.04866 0.09934 41.82891 1.02638 0.31111 0 2455546.50 4.05851 0.09952 4.04059 0.09920 42.23532 1.03691 0.30930 0 2455547.50 4.04866 0.09934 4.04059 0.09920 42.56380 1.04498 0.30811 0 2455548.50 4.04059 0.09920 4.06628 0.10013 42.99141 1.05860 0.30754 0 2455549.50 4.06628 0.10013 4.06628 0.10013 42.96938 1.05806 0.30762 0 2455550.50 4.07105 0.10017 4.07105 0.10017 42.81928 1.05361 0.30834 0 2455551.50 4.09178 0.10029 4.09178 0.10029 42.66343 1.04569 0.30969 0 2455552.50 4.07784 0.10107 4.09178 0.10029 42.12965 1.03260 0.31165 0 2455553.50 4.06646 0.10109 4.07784 0.10107 41.31186 1.02388 0.31418 0 2455554.50 4.06952 0.10083 4.07784 0.10107 40.51572 1.00415 0.31725 0 2455555.50 4.00077 0.10015 4.06646 0.10109 39.50923 0.98213 0.32082 0 2455556.50 3.93930 0.10024 4.06952 0.10083 38.56778 0.95558 0.32483 0 2455557.50 3.88281 0.10004 4.06952 0.10083 37.54144 0.93015 0.32924 1 2455558.50 3.88987 0.09921 4.00077 0.10015 35.86400 0.89779 0.33400 1 2455559.50 3.87333 0.09880 3.93930 0.10024 34.26963 0.87201 0.33904 1 2455560.50 3.88814 0.09922 3.93930 0.10024 33.22535 0.84544 0.34433 1 2455561.50 3.93536 0.09978 3.88281 0.10004 31.73116 0.81751 0.34981 1 2455562.50 4.00941 0.10090 3.88987 0.09921 30.79095 0.78533 0.35543 1 2455563.50 4.09377 0.10244 3.87333 0.09880 29.69575 0.75750 0.36116 1 2455564.50 4.09360 0.10370 3.87333 0.09880 28.76682 0.73380 0.36694 1 2455565.50 4.10225 0.10387 3.88814 0.09922 27.98401 0.71412 0.37275 1 2455566.50 4.13747 0.10451 3.93535 0.09978 27.46303 0.69632 0.37855 0 2455567.50 4.13754 0.10354 4.00941 0.10090 27.14823 0.68321 0.38430 0 2455568.50 4.12610 0.10238 4.00941 0.10090 26.36268 0.66344 0.38998 0 2455569.50 4.10775 0.10296 4.09377 0.10244 26.16228 0.65465 0.39557 0 2455570.50 4.06958 0.10178 4.09360 0.10370 25.45249 0.64478 0.40104 0 2455571.50 4.05423 0.10226 4.10225 0.10387 24.84150 0.62898 0.40637 0 2455572.50 4.02554 0.10211 4.13747 0.10451 24.42887 0.61705 0.41154 0 2455573.50 3.97588 0.10008 4.13747 0.10451 23.84590 0.60232 0.41654 0 2455574.50 3.94205 0.10036 4.13754 0.10354 23.30461 0.58316 0.42136 0 2455575.50 3.92187 0.10014 4.12610 0.10238 22.73959 0.56423 0.42597 0 2455576.50 3.91581 0.09948 4.10698 0.10295 22.17363 0.55584 0.43037 0 2455577.50 3.92682 0.09994 4.06953 0.10179 21.55082 0.53902 0.43455 0 2455578.50 3.94627 0.10035 4.05421 0.10219 21.08464 0.53148 0.43850 0 2455579.50 3.95398 0.10080 4.05421 0.10217 20.73210 0.52249 0.44221 0 2455580.50 3.98927 0.10241 4.02597 0.10204 20.26857 0.51371 0.44568 0 2455581.50 3.98230 0.10074 3.97902 0.10017 19.74612 0.49710 0.44890 0 2455582.50 3.96842 0.10108 3.95295 0.10050 19.36044 0.49221 0.45186 0 2455583.50 3.97942 0.10195 3.93600 0.10031 19.04900 0.48549 0.45456 0 2455584.50 3.96799 0.10169 3.93021 0.09973 18.81863 0.47753 0.45700 0 2455585.50 3.95331 0.10164 3.93167 0.09976 18.64810 0.47315 0.45917 0 2455586.50 3.89973 0.10056 3.94437 0.10019 18.55450 0.47128 0.46107 0 2455587.50 3.84609 0.10034 3.96944 0.10069 18.54136 0.47034 0.46269 0 2455588.50 3.87239 0.10099 3.98725 0.10135 18.51617 0.47065 0.46405 0 2455589.50 3.82443 0.09943 4.03054 0.10297 18.63071 0.47596 0.46512 0 2455590.50 3.83638 0.09936 4.03311 0.10163 18.57872 0.46816 0.46592 1 2455591.50 3.90552 0.09966 4.01833 0.10187 18.46943 0.46821 0.46644 1 2455592.50 3.93830 0.10024 4.01898 0.10261 18.45337 0.47115 0.46668 1 2455593.50 3.97551 0.10170 4.02110 0.10265 18.46615 0.47139 0.46664 0 2455594.50 4.00848 0.10120 4.02395 0.10254 18.50443 0.47155 0.46632 0 2455595.50 4.01294 0.10147 3.99222 0.10221 18.40560 0.47123 0.46573 0 2455596.50 4.04438 0.10194 3.93822 0.10116 18.22501 0.46814 0.46485 0 2455597.50 4.06769 0.10196 3.88346 0.10069 18.06105 0.46831 0.46370 0 2455598.50 4.05380 0.10047 3.89306 0.10100 18.21774 0.47263 0.46227 0 2455599.50 4.03252 0.10093 3.84251 0.09956 18.11435 0.46932 0.46057 0 2455600.50 4.01943 0.10132 3.84325 0.09956 18.27416 0.47340 0.45860 0 2455601.50 4.07264 0.10204 3.83576 0.09929 18.41836 0.47675 0.45635 0 2455602.50 4.07154 0.10199 3.89179 0.09968 18.89470 0.48394 0.45384 0 2455603.50 4.05264 0.10185 3.92941 0.10034 19.31267 0.49316 0.45107 0 2455604.50 4.06567 0.10187 3.96675 0.10167 19.76104 0.50647 0.44804 0 2455605.50 4.11570 0.10287 4.01641 0.10191 20.30523 0.51523 0.44475 0 2455606.50 4.18029 0.10452 4.04700 0.10249 20.78914 0.52647 0.44121 0 2455607.50 4.25179 0.10595 4.04823 0.10252 21.15624 0.53580 0.43743 0 2455608.50 4.28592 0.10604 4.08342 0.10269 21.73730 0.54663 0.43342 0 2455609.50 4.24977 0.10553 4.12909 0.10352 22.41704 0.56204 0.42918 0 2455610.50 4.19044 0.10547 4.13935 0.10243 22.94726 0.56782 0.42472 0 2455611.50 4.23760 0.10580 4.14328 0.10336 23.48252 0.58582 0.42005 0 2455612.50 4.13209 0.10427 4.15222 0.10423 24.08800 0.60468 0.41518 0 2455613.50 4.06866 0.10319 4.15687 0.10433 24.71244 0.62027 0.41013 0 2455614.50 4.00310 0.10184 4.22773 0.10577 25.78570 0.64513 0.40492 0 2455615.50 3.95563 0.10104 4.21648 0.10452 26.41312 0.65475 0.39954 0 2455616.50 3.89428 0.09992 4.19002 0.10422 26.98570 0.67124 0.39404 0 2455617.50 3.83416 0.09910 4.17907 0.10314 27.69919 0.68364 0.38842 0 2455618.50 3.85832 0.09972 4.18309 0.10319 28.55873 0.70449 0.38272 0 2455619.50 3.90884 0.10058 4.21137 0.10348 29.63857 0.72827 0.37695 0 2455620.50 3.94756 0.10160 4.26485 0.10473 30.96085 0.76032 0.37115 0 2455621.50 4.03288 0.10340 4.29536 0.10504 32.18107 0.78694 0.36534 0 2455622.50 4.11411 0.10450 4.29694 0.10500 33.23476 0.81216 0.35957 0 2455623.50 4.15246 0.10401 4.28003 0.10501 34.17919 0.83858 0.35387 0 2455624.50 4.23185 0.10614 4.25604 0.10487 35.08699 0.86452 0.34828 0 2455625.50 4.27473 0.10553 4.25627 0.10484 36.20924 0.89192 0.34285 0 2455626.50 4.30886 0.10699 4.19882 0.10469 36.83471 0.91838 0.33763 0 2455627.50 4.33950 0.10834 4.15000 0.10367 37.50257 0.93683 0.33265 0 2455628.50 4.42158 0.11043 4.09285 0.10236 38.04566 0.95147 0.32799 0 2455629.50 4.38660 0.10750 4.09141 0.10229 39.05091 0.97628 0.32368 0 2455630.50 4.34109 0.10683 4.02517 0.10141 39.36045 0.99165 0.31979 0 2455631.50 4.29565 0.10446 4.02359 0.10135 40.20412 1.01265 0.31635 0 2455632.50 4.29662 0.10403 3.97784 0.10154 40.49294 1.03360 0.31343 0 2455633.50 4.33467 0.10491 3.94325 0.09964 40.75671 1.02987 0.31105 0 2455634.50 4.32855 0.10434 3.94282 0.09959 41.22563 1.04132 0.30926 0 2455635.50 4.27626 0.10435 3.92871 0.09960 41.39243 1.04934 0.30808 0 2455636.50 4.25970 0.10448 3.92984 0.09959 41.55088 1.05294 0.30754 1 2455637.50 4.20277 0.10432 3.98766 0.10176 42.13511 1.07519 0.30764 1 2455638.50 4.11323 0.10277 4.06983 0.10306 42.79752 1.08379 0.30837 1 2455639.50 4.07836 0.10165 4.06983 0.10306 42.42050 1.07424 0.30974 1 2455640.50 4.01325 0.10092 4.18543 0.10438 43.07467 1.07427 0.31172 0 2455641.50 3.97312 0.10148 4.18543 0.10438 42.37852 1.05691 0.31427 0 2455642.50 3.94144 0.09944 4.31650 0.10687 42.85937 1.06116 0.31735 0 2455643.50 3.93117 0.09957 4.42721 0.10850 42.98296 1.05336 0.32093 0 2455644.50 3.98842 0.10177 4.42721 0.10850 41.92424 1.02742 0.32496 0 2455645.50 4.06983 0.10306 4.49938 0.10786 41.47146 0.99421 0.32938 0 2455646.50 4.18543 0.10438 4.55994 0.10861 40.83968 0.97271 0.33415 0 2455647.50 4.31650 0.10687 4.55994 0.10861 39.63169 0.94394 0.33920 0 2455648.50 4.42721 0.10850 4.61651 0.10914 38.89983 0.91963 0.34450 0 2455649.50 4.49938 0.10786 4.62587 0.10946 37.76680 0.89367 0.34998 0 2455650.50 4.55994 0.10861 4.62587 0.10946 36.58102 0.86561 0.35561 0 2455651.50 4.61651 0.10914 4.61762 0.10947 35.36740 0.83844 0.36133 0 2455652.50 4.62587 0.10946 4.64599 0.10979 34.47188 0.81461 0.36712 0 2455653.50 4.61762 0.10947 4.63346 0.11020 33.31645 0.79236 0.37293 0 2455654.50 4.64599 0.10979 4.63346 0.11020 32.30456 0.76830 0.37872 1 2455655.50 4.63346 0.11020 4.60031 0.10758 31.12083 0.72775 0.38447 1 2455656.50 4.60031 0.10758 4.55027 0.10760 29.89245 0.70684 0.39016 0 2455657.50 4.55027 0.10760 4.54550 0.10658 29.02428 0.68057 0.39574 0 2455658.50 4.54550 0.10658 4.53633 0.10707 28.18192 0.66517 0.40121 0 2455659.50 4.53633 0.10707 4.53633 0.10707 27.44836 0.64786 0.40653 0 2455660.50 4.51351 0.10785 4.51351 0.10785 26.62894 0.63631 0.41170 0 2455661.50 4.51345 0.10742 4.51345 0.10742 25.99403 0.61868 0.41669 0 2455662.50 4.48734 0.10716 4.48734 0.10716 25.25754 0.60314 0.42150 0 2455663.50 4.43749 0.10696 4.43749 0.10696 24.43985 0.58912 0.42611 0 2455664.50 4.41785 0.10610 4.43749 0.10696 23.94343 0.57715 0.43050 0 2455665.50 4.43883 0.10766 4.41785 0.10610 23.38198 0.56157 0.43468 0 2455666.50 4.43394 0.10841 4.43883 0.10766 23.07256 0.55961 0.43862 0 2455667.50 4.38427 0.10771 4.43394 0.10841 22.66267 0.55410 0.44232 0 2455668.50 4.31308 0.10689 4.38427 0.10771 22.06230 0.54203 0.44578 0 2455669.50 4.26500 0.10533 4.31308 0.10689 21.39487 0.53024 0.44899 0 2455670.50 4.25283 0.10505 4.26500 0.10533 20.88076 0.51567 0.45195 0 2455671.50 4.21014 0.10483 4.26500 0.10533 20.63410 0.50958 0.45464 0 2455672.50 4.24213 0.10511 4.25283 0.10505 20.35710 0.50286 0.45707 0 2455673.50 4.28818 0.10709 4.21014 0.10483 19.96346 0.49708 0.45923 0 2455674.50 4.37485 0.10852 4.24213 0.10511 19.95049 0.49434 0.46112 0 2455675.50 4.39669 0.10778 4.28818 0.10709 20.02626 0.50012 0.46274 0 2455676.50 4.43131 0.10907 4.37485 0.10852 20.31287 0.50388 0.46408 0 2455677.50 4.49724 0.10898 4.39669 0.10778 20.32068 0.49814 0.46515 0 2455678.50 4.55492 0.10959 4.39669 0.10778 20.25184 0.49645 0.46594 0 2455679.50 4.58324 0.11001 4.43131 0.10907 20.36658 0.50128 0.46645 0 2455680.50 4.57272 0.10981 4.49724 0.10898 20.64906 0.50039 0.46668 0 2455681.50 4.56624 0.10926 4.55492 0.10959 20.91811 0.50327 0.46664 0 2455682.50 4.51786 0.10666 4.58324 0.11001 21.07763 0.50593 0.46631 0 2455683.50 4.48556 0.10587 4.57272 0.10981 21.08395 0.50631 0.46571 0 2455684.50 4.50874 0.10499 4.56624 0.10926 21.13417 0.50571 0.46482 0 2455685.50 4.49266 0.10507 4.56624 0.10926 21.24011 0.50825 0.46366 0 2455686.50 4.51064 0.10595 4.51786 0.10666 21.14589 0.49924 0.46222 0 2455687.50 4.49247 0.10693 4.48556 0.10587 21.15100 0.49920 0.46051 0 2455688.50 4.46684 0.10579 4.50874 0.10499 21.44457 0.49934 0.45853 0 2455689.50 4.50685 0.10651 4.49266 0.10507 21.57952 0.50470 0.45628 0 2455690.50 4.51205 0.10578 4.51064 0.10595 21.90707 0.51456 0.45376 0 2455691.50 4.50758 0.10639 4.49247 0.10693 22.08882 0.52574 0.45098 0 2455692.50 4.47455 0.10600 4.49247 0.10693 22.38969 0.53290 0.44794 0 2455693.50 4.39485 0.10591 4.46684 0.10579 22.59308 0.53508 0.44464 0 2455694.50 4.35669 0.10473 4.50685 0.10651 23.16310 0.54739 0.44110 0 2455695.50 4.31357 0.10440 4.51205 0.10578 23.59306 0.55313 0.43732 0 2455696.50 4.25344 0.10480 4.50758 0.10639 24.00924 0.56670 0.43329 0 2455697.50 4.22310 0.10381 4.47455 0.10600 24.30769 0.57583 0.42905 0 2455698.50 4.19817 0.10369 4.47455 0.10600 24.82188 0.58801 0.42458 1 2455699.50 4.21607 0.10258 4.39485 0.10591 24.92569 0.60066 0.41990 1 2455700.50 4.22664 0.10216 4.35669 0.10473 25.29271 0.60802 0.41503 1 2455701.50 4.17075 0.10340 4.31357 0.10440 25.66371 0.62115 0.40998 0 2455702.50 4.17111 0.10291 4.25344 0.10480 25.96335 0.63973 0.40475 0 2455703.50 4.21222 0.10275 4.22310 0.10381 26.47669 0.65085 0.39938 0 2455704.50 4.24017 0.10403 4.22310 0.10381 27.22236 0.66918 0.39387 0 2455705.50 4.27381 0.10428 4.19817 0.10369 27.85073 0.68789 0.38825 0 2455706.50 4.25986 0.10373 4.21494 0.10260 28.80264 0.70108 0.38254 0 2455707.50 4.25442 0.10409 4.22426 0.10222 29.75728 0.72007 0.37677 0 2455708.50 4.23705 0.10383 4.22277 0.10225 30.68475 0.74303 0.37097 0 2455709.50 4.24011 0.10428 4.17317 0.10354 31.29606 0.77645 0.36516 0 2455710.50 4.27626 0.10453 4.18083 0.10322 32.36843 0.79916 0.35939 0 2455711.50 4.32965 0.10631 4.22546 0.10316 33.77647 0.82460 0.35370 0 2455712.50 4.40593 0.10664 4.22812 0.10324 34.89067 0.85193 0.34811 0 2455713.50 4.42140 0.10658 4.25861 0.10439 36.26368 0.88890 0.34269 0 2455714.50 4.48373 0.10852 4.29955 0.10487 37.75333 0.92088 0.33747 0 2455715.50 4.56257 0.11009 4.30311 0.10496 38.92081 0.94932 0.33251 0 2455716.50 4.52978 0.10991 4.30545 0.10467 40.05551 0.97379 0.32785 0 2455717.50 4.53945 0.11034 4.29217 0.10486 40.99903 1.00167 0.32356 0 2455718.50 4.56881 0.10926 4.29621 0.10495 42.04042 1.02696 0.31968 0 2455719.50 4.51315 0.10899 4.28741 0.10462 42.86668 1.04602 0.31626 0 2455720.50 4.43455 0.10769 4.29206 0.10469 43.71428 1.06629 0.31334 0 2455721.50 4.35094 0.10605 4.28558 0.10489 44.31311 1.08455 0.31098 0 2455722.50 4.25503 0.10446 4.32440 0.10517 45.22860 1.09994 0.30921 0 2455723.50 4.20243 0.10325 4.32804 0.10522 45.60744 1.10873 0.30805 0 2455724.50 4.16922 0.10237 4.33728 0.10553 45.86071 1.11582 0.30753 0 2455725.50 4.16536 0.10300 4.33779 0.10548 45.83080 1.11442 0.30765 0 2455726.50 4.12304 0.10386 4.33215 0.10467 45.54643 1.10045 0.30841 0 2455727.50 4.14903 0.10404 4.30769 0.10410 44.88484 1.08465 0.30979 0 2455728.50 4.20537 0.10538 4.30156 0.10396 44.25006 1.06946 0.31179 0 2455729.50 4.27809 0.10640 4.32192 0.10394 43.73641 1.05189 0.31435 0 2455730.50 4.32990 0.10634 4.35940 0.10573 43.25727 1.04911 0.31746 0 2455731.50 4.35638 0.10626 4.35053 0.10554 42.20767 1.02389 0.32105 0 2455732.50 4.41437 0.10754 4.32535 0.10541 40.92691 0.99740 0.32509 0 2455733.50 4.45406 0.10775 4.31761 0.10524 39.76192 0.96917 0.32952 0 2455734.50 4.39859 0.10704 4.32352 0.10503 38.68734 0.93986 0.33430 0 2455735.50 4.39510 0.10631 4.30751 0.10455 37.40273 0.90785 0.33936 0 2455736.50 4.36036 0.10588 4.29950 0.10441 36.19384 0.87893 0.34466 0 2455737.50 4.39406 0.10608 4.26671 0.10418 34.80054 0.84974 0.35015 0 2455738.50 4.34586 0.10465 4.20410 0.10344 33.21315 0.81723 0.35578 0 2455739.50 4.26745 0.10294 4.18793 0.10333 32.04500 0.79065 0.36151 0 2455740.50 4.21962 0.10217 4.18411 0.10327 31.01480 0.76545 0.36730 0 2455741.50 4.22433 0.10118 4.15779 0.10344 29.86763 0.74304 0.37310 0 2455742.50 4.25142 0.10341 4.15570 0.10255 28.94649 0.71432 0.37890 0 2455743.50 4.24151 0.10356 4.13940 0.10284 27.97733 0.69505 0.38465 0 2455744.50 4.25607 0.10338 4.13886 0.10285 27.16563 0.67504 0.39033 0 2455745.50 4.23680 0.10328 4.13447 0.10317 26.37717 0.65822 0.39591 0 2455746.50 4.21778 0.10323 4.12322 0.10281 25.59440 0.63820 0.40137 0 2455747.50 4.16555 0.10273 4.16934 0.10333 25.20785 0.62475 0.40669 0 2455748.50 4.16530 0.10295 4.26066 0.10554 25.11813 0.62219 0.41186 0 2455749.50 4.14916 0.10335 4.26066 0.10554 24.52046 0.60739 0.41684 0 2455750.50 4.15258 0.10250 4.33479 0.10645 24.38223 0.59877 0.42165 0 2455751.50 4.13802 0.10286 4.40574 0.10698 24.24932 0.58881 0.42625 0 2455752.50 4.13417 0.10317 4.44421 0.10811 23.96511 0.58300 0.43063 0 2455753.50 4.12322 0.10281 4.46336 0.10884 23.60932 0.57574 0.43480 0 2455754.50 4.16934 0.10333 4.46336 0.10884 23.18766 0.56546 0.43874 0 2455755.50 4.26066 0.10554 4.51492 0.11043 23.06513 0.56413 0.44243 0 2455756.50 4.33479 0.10645 4.51143 0.10924 22.69180 0.54948 0.44589 0 2455757.50 4.40574 0.10698 4.48342 0.10898 22.23050 0.54037 0.44909 0 2455758.50 4.44421 0.10811 4.41981 0.10758 21.63040 0.52647 0.45203 0 2455759.50 4.46336 0.10884 4.37406 0.10658 21.15442 0.51544 0.45472 0 2455760.50 4.51492 0.11043 4.31369 0.10591 20.64206 0.50679 0.45714 0 2455761.50 4.51143 0.10924 4.31369 0.10591 20.44896 0.50205 0.45929 0 2455762.50 4.48342 0.10898 4.24806 0.10511 19.97373 0.49422 0.46117 0 2455763.50 4.41981 0.10758 4.17332 0.10394 19.48600 0.48533 0.46279 0 2455764.50 4.37406 0.10658 4.13399 0.10332 19.19146 0.47964 0.46412 0 2455765.50 4.31369 0.10591 4.16842 0.10402 19.26332 0.48068 0.46518 0 2455766.50 4.24806 0.10511 4.24353 0.10551 19.54472 0.48594 0.46596 0 2455767.50 4.17332 0.10394 4.29039 0.10735 19.71794 0.49335 0.46646 0 2455768.50 4.13399 0.10332 4.29039 0.10735 19.69904 0.49287 0.46669 0 2455769.50 4.16842 0.10402 4.33601 0.10834 19.91329 0.49758 0.46663 0 2455770.50 4.24353 0.10551 4.30164 0.10647 19.78381 0.48965 0.46630 0 2455771.50 4.29039 0.10735 4.33320 0.10804 19.98153 0.49821 0.46568 0 2455772.50 4.33601 0.10834 4.37118 0.10940 20.23413 0.50639 0.46479 0 2455773.50 4.30164 0.10647 4.30592 0.10863 20.03268 0.50537 0.46362 0 2455774.50 4.33320 0.10804 4.32262 0.10888 20.23631 0.50974 0.46218 0 2455775.50 4.37118 0.10940 4.32262 0.10888 20.38769 0.51355 0.46046 0 2455776.50 4.30592 0.10863 4.35767 0.10878 20.73189 0.51752 0.45847 0 2455777.50 4.32262 0.10888 4.29503 0.10716 20.63691 0.51490 0.45621 0 2455778.50 4.35767 0.10878 4.26775 0.10553 20.73487 0.51273 0.45368 0 2455779.50 4.29503 0.10716 4.24494 0.10567 20.88001 0.51977 0.45089 0 2455780.50 4.26775 0.10553 4.27491 0.10602 21.31465 0.52861 0.44784 0 2455781.50 4.24494 0.10567 4.26837 0.10520 21.59938 0.53237 0.44454 0 2455782.50 4.27491 0.10602 4.26837 0.10520 21.94861 0.54098 0.44099 0 2455783.50 4.26837 0.10520 4.28953 0.10585 22.44183 0.55381 0.43720 0 2455784.50 4.28953 0.10585 4.30195 0.10538 22.92736 0.56164 0.43317 0 2455785.50 4.30195 0.10538 4.29326 0.10566 23.33737 0.57437 0.42891 0 2455786.50 4.29326 0.10566 4.27509 0.10457 23.73109 0.58045 0.42444 0 2455787.50 4.27509 0.10457 4.26849 0.10448 24.22589 0.59299 0.41976 0 2455788.50 4.26849 0.10448 4.26849 0.10448 24.79886 0.60701 0.41488 0 2455789.50 4.24677 0.10419 4.24677 0.10419 25.28577 0.62037 0.40982 0 2455790.50 4.25956 0.10503 4.25956 0.10503 26.02159 0.64165 0.40459 0 2455791.50 4.32133 0.10607 4.32133 0.10607 27.11521 0.66557 0.39921 0 2455792.50 4.31791 0.10642 4.31791 0.10642 27.85762 0.68658 0.39370 0 2455793.50 4.26561 0.10536 4.31791 0.10642 28.67072 0.70662 0.38808 0 2455794.50 4.25766 0.10480 4.26561 0.10536 29.17577 0.72061 0.38237 0 2455795.50 4.22433 0.10472 4.25766 0.10480 30.02086 0.73897 0.37659 0 2455796.50 4.29454 0.10537 4.22433 0.10472 30.72558 0.76167 0.37079 0 2455797.50 4.32733 0.10548 4.22433 0.10472 31.71055 0.78608 0.36499 0 2455798.50 4.40164 0.10667 4.29454 0.10537 33.28139 0.81657 0.35922 0 2455799.50 4.43590 0.10690 4.32733 0.10548 34.62463 0.84399 0.35352 0 2455800.50 4.46158 0.10746 4.40164 0.10667 36.35784 0.88110 0.34794 0 2455801.50 4.46978 0.10716 4.40164 0.10667 37.51740 0.90920 0.34252 0 2455802.50 4.39498 0.10686 4.43590 0.10690 38.98665 0.93953 0.33731 0 2455803.50 4.34794 0.10557 4.46158 0.10746 40.39000 0.97286 0.33236 0 2455804.50 4.38470 0.10711 4.46158 0.10746 41.54288 1.00063 0.32771 0 2455805.50 4.43957 0.10786 4.46978 0.10716 42.72865 1.02435 0.32343 0 2455806.50 4.45284 0.10865 4.39498 0.10686 43.03706 1.04641 0.31956 0 2455807.50 4.45657 0.10951 4.39498 0.10686 43.96915 1.06907 0.31616 0 2455808.50 4.46605 0.10908 4.34794 0.10557 44.30621 1.07580 0.31326 0 2455809.50 4.42739 0.10770 4.34794 0.10557 44.97623 1.09207 0.31092 0 2455810.50 4.47666 0.10803 4.38470 0.10711 45.87257 1.12058 0.30917 1 2455811.50 4.44665 0.10818 4.43957 0.10786 46.79047 1.13677 0.30803 1 2455812.50 4.42691 0.10749 4.43957 0.10786 46.94405 1.14050 0.30752 1 2455813.50 4.42944 0.10736 4.45697 0.10869 47.08587 1.14823 0.30766 1 2455814.50 4.43807 0.10765 4.46498 0.10875 46.93282 1.14313 0.30844 1 2455815.50 4.40512 0.10822 4.47694 0.10965 46.63264 1.14215 0.30985 1 2455816.50 4.40586 0.10780 4.49044 0.10934 46.17220 1.12422 0.31186 1 2455817.50 4.48612 0.10849 4.49716 0.10941 45.48447 1.10653 0.31444 1 2455818.50 4.59860 0.10931 4.47213 0.10826 44.34709 1.07355 0.31756 1 2455819.50 4.66999 0.11055 4.47974 0.10836 43.42951 1.05048 0.32117 1 2455820.50 4.73706 0.11051 4.52025 0.10852 42.73680 1.02602 0.32522 1 2455821.50 4.73407 0.11271 4.51028 0.10881 41.50057 1.00120 0.32967 0 2455822.50 4.73597 0.11217 4.51686 0.10888 40.38087 0.97336 0.33445 0 2455823.50 4.78325 0.11306 4.52450 0.10891 39.25004 0.94478 0.33952 0 2455824.50 4.77163 0.11288 4.53246 0.10847 38.11826 0.91225 0.34483 0 2455825.50 4.73756 0.11157 4.53979 0.10855 36.99184 0.88451 0.35032 0 2455826.50 4.72875 0.11254 4.55512 0.10887 35.95103 0.85923 0.35595 0 2455827.50 4.75120 0.11253 4.52748 0.10910 34.60930 0.83398 0.36169 0 2455828.50 4.66159 0.11171 4.51685 0.10847 33.44888 0.80326 0.36747 0 2455829.50 4.69854 0.11179 4.52215 0.10850 32.45410 0.77869 0.37328 0 2455830.50 4.71566 0.11191 4.56886 0.10871 31.79463 0.75649 0.37908 0 2455831.50 4.72563 0.11078 4.65923 0.11002 31.46204 0.74295 0.38483 0 2455832.50 4.71022 0.10934 4.71066 0.11134 30.89137 0.73012 0.39050 0 2455833.50 4.71175 0.11076 4.71206 0.11136 30.03638 0.70987 0.39608 0 2455834.50 4.71921 0.11136 4.77563 0.11176 29.61974 0.69315 0.40154 0 2455835.50 4.69224 0.11145 4.77223 0.11273 28.83011 0.68103 0.40685 0 2455836.50 4.69584 0.11106 4.76826 0.11226 28.08937 0.66132 0.41201 0 2455837.50 4.67248 0.11025 4.79450 0.11189 27.57292 0.64349 0.41699 0 2455838.50 4.70190 0.11072 4.80559 0.11268 27.01193 0.63339 0.42179 0 2455839.50 4.75224 0.11222 4.80639 0.11268 26.43744 0.61979 0.42638 0 2455840.50 4.74747 0.11079 4.78801 0.11178 25.80331 0.60238 0.43076 0 2455841.50 4.75517 0.11095 4.77737 0.11156 25.25591 0.58979 0.43492 0 2455842.50 4.71854 0.11047 4.80834 0.11183 24.96657 0.58065 0.43885 0 2455843.50 4.67603 0.10944 4.83895 0.11283 24.70827 0.57613 0.44254 0 2455844.50 4.67028 0.10897 4.85806 0.11298 24.42411 0.56802 0.44599 0 2455845.50 4.72832 0.11083 4.86089 0.11300 24.09205 0.56007 0.44918 0 2455846.50 4.75389 0.11217 4.85298 0.11259 23.74128 0.55081 0.45212 0 2455847.50 4.81157 0.11292 4.83770 0.11156 23.38872 0.53937 0.45480 0 2455848.50 4.80564 0.11275 4.80278 0.11144 22.97545 0.53312 0.45721 0 2455849.50 4.79487 0.11234 4.79205 0.11155 22.71049 0.52864 0.45935 0 2455850.50 4.80325 0.11099 4.76904 0.11178 22.41813 0.52543 0.46123 0 2455851.50 4.83053 0.11254 4.74155 0.11158 22.13488 0.52091 0.46283 0 2455852.50 4.82117 0.11191 4.74225 0.11159 22.01178 0.51794 0.46416 0 2455853.50 4.80765 0.11096 4.68735 0.11067 21.65882 0.51139 0.46521 0 2455854.50 4.84209 0.11141 4.62303 0.10963 21.29079 0.50487 0.46598 0 2455855.50 4.93836 0.11346 4.60761 0.10947 21.17484 0.50309 0.46647 0 2455856.50 4.94295 0.11361 4.59618 0.10838 21.10285 0.49763 0.46669 0 2455857.50 4.91891 0.11292 4.64401 0.10818 21.32832 0.49685 0.46663 0 2455858.50 4.88882 0.11192 4.69719 0.10978 21.60437 0.50491 0.46628 0 2455859.50 4.84288 0.11235 4.69645 0.10976 21.65875 0.50619 0.46566 0 2455860.50 4.82509 0.11187 4.75799 0.11093 22.02767 0.51355 0.46476 0 2455861.50 4.78851 0.11194 4.78047 0.11140 22.24430 0.51838 0.46358 0 2455862.50 4.75982 0.11164 4.84281 0.11211 22.67636 0.52494 0.46213 0 2455863.50 4.68453 0.11055 4.98462 0.11486 23.51583 0.54189 0.46040 0 2455864.50 4.60746 0.10943 5.05813 0.11542 24.07124 0.54928 0.45840 0 2455865.50 4.57957 0.10910 5.13823 0.11581 24.69625 0.55661 0.45613 0 2455866.50 4.55241 0.10731 5.14233 0.11584 24.99297 0.56303 0.45360 0 2455867.50 4.61670 0.10750 5.22365 0.11733 25.70432 0.57735 0.45080 0 2455868.50 4.68282 0.10949 5.23925 0.11654 26.13419 0.58134 0.44774 0 2455869.50 4.76655 0.11102 5.20331 0.11485 26.34297 0.58147 0.44443 0 2455870.50 4.80154 0.11180 5.15839 0.11462 26.53880 0.58971 0.44088 0 2455871.50 4.87506 0.11269 5.13289 0.11351 26.86884 0.59416 0.43708 0 2455872.50 5.02876 0.11556 5.09209 0.11428 27.15442 0.60940 0.43304 0 2455873.50 5.10614 0.11593 5.09592 0.11432 27.71781 0.62182 0.42878 0 2455874.50 5.18510 0.11622 5.02560 0.11167 27.91563 0.62030 0.42430 0 2455875.50 5.27183 0.11786 5.01214 0.11175 28.46640 0.63471 0.41961 0 2455876.50 5.28425 0.11697 5.02405 0.11199 29.20997 0.65112 0.41473 0 2455877.50 5.23825 0.11519 4.98320 0.11205 29.69337 0.66767 0.40966 0 2455878.50 5.18247 0.11478 4.98320 0.11205 30.46678 0.68506 0.40443 0 2455879.50 5.15146 0.11360 4.97683 0.11197 31.25445 0.70318 0.39904 0 2455880.50 5.10510 0.11443 4.97885 0.11348 32.14969 0.73274 0.39353 0 2455881.50 5.02889 0.11168 4.99977 0.11434 33.22801 0.75987 0.38790 0 2455882.50 5.01243 0.11175 5.03567 0.11413 34.47456 0.78136 0.38219 0 2455883.50 5.02405 0.11199 5.03567 0.11413 35.54015 0.80551 0.37642 0 2455884.50 4.98320 0.11205 4.95653 0.11381 36.08588 0.82859 0.37061 0 2455885.50 4.97683 0.11197 4.86558 0.11288 36.55974 0.84821 0.36481 0 2455886.50 4.97885 0.11348 4.82191 0.11311 37.40488 0.87741 0.35904 0 2455887.50 4.99977 0.11434 4.82191 0.11311 38.61971 0.90590 0.35335 0 2455888.50 5.03567 0.11413 4.73126 0.11162 39.11841 0.92285 0.34777 0 2455889.50 4.95653 0.11381 4.70435 0.11002 40.13571 0.93865 0.34236 0 2455890.50 4.86558 0.11288 4.70435 0.11002 41.38429 0.96785 0.33716 0 2455891.50 4.82191 0.11311 4.75621 0.11183 43.09540 1.01330 0.33221 0 2455892.50 4.73126 0.11162 4.73462 0.10970 44.12206 1.02228 0.32758 0 2455893.50 4.70435 0.11002 4.73462 0.10970 45.29540 1.04946 0.32331 0 2455894.50 4.75621 0.11183 4.79401 0.11139 46.97734 1.09149 0.31945 0 2455895.50 4.73462 0.10970 4.86919 0.11255 48.74310 1.12668 0.31606 0 2455896.50 4.79401 0.11139 4.86919 0.11255 49.64319 1.14748 0.31318 0 2455897.50 4.86919 0.11255 4.94925 0.11503 51.21696 1.19034 0.31086 0 2455898.50 4.94925 0.11503 5.06277 0.11503 52.98165 1.20374 0.30912 0 2455899.50 5.06277 0.11503 5.06277 0.11503 53.36736 1.21250 0.30800 0 2455900.50 5.18791 0.11764 5.18791 0.11764 54.85902 1.24398 0.30752 0 2455901.50 5.20492 0.11831 5.18791 0.11764 54.80281 1.24270 0.30768 0 2455902.50 5.18180 0.11744 5.20492 0.11831 54.69855 1.24333 0.30847 0 2455903.50 5.24211 0.11745 5.18180 0.11744 53.95622 1.22290 0.30990 0 2455904.50 5.22614 0.11736 5.18180 0.11744 53.25681 1.20704 0.31193 0 2455905.50 5.14106 0.11535 5.24211 0.11745 52.98927 1.18723 0.31453 0 2455906.50 4.97372 0.11204 5.24211 0.11745 51.94852 1.16391 0.31766 0 2455907.50 4.92001 0.11080 5.22614 0.11736 50.62839 1.13691 0.32129 0 2455908.50 4.83291 0.11023 5.14106 0.11535 48.56727 1.08974 0.32535 0 2455909.50 4.83603 0.10900 5.14106 0.11535 47.26398 1.06050 0.32981 0 2455910.50 4.85879 0.10991 4.97371 0.11204 44.42492 1.00070 0.33460 0 2455911.50 4.75939 0.10980 4.92001 0.11080 42.64107 0.96030 0.33968 0 2455912.50 4.80539 0.11037 4.92001 0.11080 41.33782 0.93095 0.34499 0 2455913.50 4.91010 0.11231 4.83291 0.11023 39.34193 0.89732 0.35049 0 2455914.50 4.93983 0.11271 4.83603 0.10900 38.13070 0.85944 0.35613 0 2455915.50 4.92148 0.11340 4.85879 0.10991 37.10563 0.83935 0.36186 0 2455916.50 4.92741 0.11413 4.85879 0.10991 35.94620 0.81312 0.36765 0 2455917.50 4.99182 0.11477 4.75939 0.10980 34.12417 0.78722 0.37346 0 2455918.50 4.90827 0.11354 4.80539 0.11037 33.40945 0.76738 0.37925 0 2455919.50 4.81469 0.11231 4.91010 0.11231 33.12593 0.75771 0.38500 0 2455920.50 4.77456 0.11240 4.91010 0.11231 32.17084 0.73587 0.39067 0 2455921.50 4.77132 0.11208 4.93983 0.11271 31.46137 0.71786 0.39625 0 2455922.50 4.75511 0.11278 4.91951 0.11338 30.48706 0.70261 0.40170 0 2455923.50 4.74692 0.11175 4.92427 0.11409 29.72515 0.68869 0.40701 0 2455924.50 4.73634 0.11116 4.92227 0.11406 28.97478 0.67144 0.41217 0 2455925.50 4.78618 0.11129 4.98484 0.11470 28.64697 0.65918 0.41714 0 2455926.50 4.81132 0.11185 4.90485 0.11355 27.55103 0.63782 0.42193 0 2455927.50 4.85506 0.11237 4.81356 0.11238 26.45980 0.61772 0.42652 0 2455928.50 4.82362 0.11177 4.76986 0.11231 25.68987 0.60489 0.43090 0 2455929.50 4.78037 0.11111 4.76194 0.11201 25.15998 0.59182 0.43505 0 2455930.50 4.83273 0.11081 4.76084 0.11200 24.70681 0.58125 0.43897 0 2455931.50 4.88362 0.11219 4.74415 0.11260 24.21221 0.57466 0.44265 0 2455932.50 4.87683 0.11260 4.73932 0.11173 23.81629 0.56149 0.44609 0 2455933.50 4.77628 0.11033 4.72056 0.11113 23.38674 0.55054 0.44927 0 2455934.50 4.70043 0.10979 4.75476 0.11114 23.25192 0.54352 0.45220 0 2455935.50 4.62838 0.10899 4.76719 0.11150 23.03989 0.53889 0.45487 0 2455936.50 4.59388 0.10757 4.79549 0.11163 22.93357 0.53384 0.45728 0 2455937.50 4.58569 0.10782 4.79208 0.11159 22.70456 0.52868 0.45942 0 2455938.50 4.54244 0.10761 4.76514 0.11130 22.39460 0.52307 0.46128 0 2455939.50 4.55419 0.10758 4.74393 0.11079 22.14170 0.51711 0.46287 0 2455940.50 4.56079 0.10783 4.79229 0.11061 22.24053 0.51333 0.46419 0 2455941.50 4.62177 0.10910 4.84336 0.11175 22.37702 0.51632 0.46524 0 2455942.50 4.67474 0.10990 4.82310 0.11194 22.21035 0.51547 0.46600 0 2455943.50 4.79224 0.11253 4.74105 0.11003 21.78707 0.50563 0.46649 0 2455944.50 4.85848 0.11351 4.66687 0.10932 21.42721 0.50192 0.46669 0 2455945.50 4.85652 0.11366 4.66561 0.10930 21.42811 0.50200 0.46662 0 2455946.50 4.80056 0.11318 4.59641 0.10848 21.14218 0.49898 0.46627 0 2455947.50 4.72367 0.11139 4.55775 0.10710 21.02121 0.49396 0.46564 0 2455948.50 4.68202 0.11141 4.53668 0.10731 21.00596 0.49686 0.46473 0 2455949.50 4.67028 0.11138 4.49729 0.10669 20.93028 0.49655 0.46354 0 2455950.50 4.69303 0.11164 4.49828 0.10644 21.06755 0.49852 0.46208 0 2455951.50 4.63278 0.11095 4.49971 0.10684 21.23350 0.50414 0.46034 0 2455952.50 4.59401 0.11041 4.49781 0.10681 21.41085 0.50842 0.45834 0 2455953.50 4.55835 0.10987 4.54586 0.10796 21.85617 0.51907 0.45606 0 2455954.50 4.53351 0.10838 4.57649 0.10839 22.25088 0.52698 0.45352 0 2455955.50 4.54018 0.10950 4.66415 0.11035 22.96027 0.54322 0.45071 0 2455956.50 4.61217 0.10965 4.72078 0.11118 23.55825 0.55483 0.44765 0 2455957.50 4.65450 0.10991 4.73679 0.11167 23.99250 0.56560 0.44433 0 2455958.50 4.71383 0.11034 4.68925 0.11091 24.13754 0.57090 0.44076 0 2455959.50 4.65945 0.10991 4.68601 0.11084 24.54307 0.58054 0.43696 0 2455960.50 4.63933 0.10917 4.61469 0.10955 24.62308 0.58452 0.43291 0 2455961.50 4.57486 0.10803 4.58814 0.10955 24.97149 0.59625 0.42864 0 2455962.50 4.51712 0.10720 4.56190 0.10940 25.35671 0.60807 0.42416 0 2455963.50 4.47241 0.10599 4.56708 0.10942 25.95685 0.62188 0.41946 0 2455964.50 4.42635 0.10616 4.56606 0.10913 26.56673 0.63497 0.41457 0 2455965.50 4.40036 0.10473 4.56410 0.10908 27.21706 0.65047 0.40950 0 2455966.50 4.38378 0.10412 4.51677 0.10822 27.63736 0.66218 0.40426 0 2455967.50 4.38036 0.10490 4.49262 0.10836 28.23722 0.68108 0.39888 0 2455968.50 4.41076 0.10593 4.48071 0.10762 28.95819 0.69553 0.39336 0 2455969.50 4.40966 0.10582 4.49510 0.10825 29.90081 0.72009 0.38773 0 2455970.50 4.45669 0.10682 4.49372 0.10822 30.79267 0.74154 0.38201 0 2455971.50 4.50813 0.10758 4.56017 0.10841 32.21460 0.76581 0.37624 0 2455972.50 4.56061 0.10873 4.58620 0.10872 33.42183 0.79229 0.37043 0 2455973.50 4.53327 0.10773 4.66239 0.10883 35.06715 0.81856 0.36463 0 2455974.50 4.47657 0.10721 4.66075 0.10878 36.19022 0.84470 0.35887 0 2455975.50 4.47516 0.10732 4.63122 0.10911 37.12876 0.87476 0.35318 0 2455976.50 4.43822 0.10714 4.61632 0.10802 38.20513 0.89398 0.34761 0 2455977.50 4.43100 0.10702 4.61557 0.10798 39.41578 0.92214 0.34220 0 2455978.50 4.49792 0.10727 4.59801 0.10813 40.48623 0.95214 0.33700 0 2455979.50 4.44672 0.10623 4.52893 0.10666 41.07238 0.96729 0.33207 0 2455980.50 4.43663 0.10708 4.52933 0.10664 42.24413 0.99463 0.32744 0 2455981.50 4.43859 0.10701 4.50763 0.10655 43.15704 1.02016 0.32318 0 2455982.50 4.46152 0.10733 4.50108 0.10749 44.13756 1.05408 0.31934 0 2455983.50 4.52679 0.10761 4.50355 0.10754 45.11029 1.07716 0.31597 0 2455984.50 4.54575 0.10802 4.51279 0.10804 46.03299 1.10212 0.31310 0 2455985.50 4.63444 0.10802 4.50136 0.10783 46.60061 1.11630 0.31080 0 2455986.50 4.61853 0.10875 4.50509 0.10795 47.15888 1.12997 0.30908 0 2455987.50 4.60703 0.10756 4.50434 0.10750 47.48836 1.13339 0.30798 0 2455988.50 4.60532 0.10817 4.50434 0.10750 47.63210 1.13682 0.30751 0 2455989.50 4.53217 0.10651 4.47951 0.10764 47.31491 1.13690 0.30769 0 2455990.50 4.51443 0.10666 4.50813 0.10643 47.36544 1.11825 0.30851 0 2455991.50 4.51266 0.10770 4.50813 0.10643 46.92542 1.10787 0.30995 0 2455992.50 4.52208 0.10832 4.49902 0.10873 46.21828 1.11700 0.31200 0 2455993.50 4.50709 0.10801 4.49902 0.10873 45.45230 1.09849 0.31462 0 2455994.50 4.50434 0.10750 4.48556 0.10910 44.42217 1.08046 0.31777 0 2455995.50 4.47951 0.10764 4.46996 0.10854 43.27103 1.05066 0.32141 0 2455996.50 4.50813 0.10643 4.46996 0.10854 42.19347 1.02450 0.32548 0 2455997.50 4.49902 0.10873 4.46850 0.10746 41.04541 0.98705 0.32995 0 2455998.50 4.48556 0.10910 4.42550 0.10790 39.49246 0.96286 0.33475 0 2455999.50 4.46996 0.10854 4.42550 0.10790 38.31916 0.93426 0.33984 0 2456000.50 4.46850 0.10746 4.38635 0.10599 36.81858 0.88964 0.34516 0 2456001.50 4.42550 0.10790 4.34788 0.10528 35.35904 0.85616 0.35066 0 2456002.50 4.38635 0.10599 4.34788 0.10528 34.24818 0.82926 0.35630 0 2456003.50 4.34788 0.10528 4.37332 0.10527 33.36563 0.80314 0.36204 0 2456004.50 4.37332 0.10527 4.38690 0.10575 32.42372 0.78160 0.36783 0 2456005.50 4.38690 0.10575 4.39076 0.10662 31.45111 0.76375 0.37364 0 2456006.50 4.39076 0.10662 4.39076 0.10662 30.49824 0.74061 0.37943 0 2456007.50 4.38470 0.10553 4.38470 0.10553 29.55442 0.71128 0.38518 0 2456008.50 4.38721 0.10615 4.38721 0.10615 28.71949 0.69488 0.39085 0 2456009.50 4.44470 0.10574 4.44470 0.10574 28.28381 0.67289 0.39642 0 2456010.50 4.47186 0.10626 4.47186 0.10626 27.69012 0.65798 0.40187 0 2456011.50 4.51553 0.10720 4.47186 0.10626 26.97296 0.64094 0.40717 0 2456012.50 4.56868 0.10746 4.51553 0.10720 26.56052 0.63056 0.41232 0 2456013.50 4.59706 0.10827 4.56868 0.10746 26.23655 0.61713 0.41729 0 2456014.50 4.61187 0.10755 4.59706 0.10827 25.80460 0.60773 0.42208 0 2456015.50 4.61272 0.10802 4.61187 0.10755 25.33477 0.59081 0.42666 0 2456016.50 4.57975 0.10795 4.61187 0.10755 24.82388 0.57890 0.43103 0 2456017.50 4.55780 0.10671 4.61272 0.10802 24.35773 0.57038 0.43517 0 2456018.50 4.58801 0.10646 4.57975 0.10795 23.75443 0.55992 0.43909 0 2456019.50 4.56954 0.10736 4.55780 0.10671 23.24970 0.54433 0.44276 0 2456020.50 4.56141 0.10587 4.58801 0.10646 23.04543 0.53474 0.44619 0 2456021.50 4.48048 0.10495 4.56954 0.10736 22.62912 0.53166 0.44937 0 2456022.50 4.44831 0.10403 4.56141 0.10587 22.29791 0.51752 0.45229 0 2456023.50 4.45449 0.10579 4.56141 0.10587 22.03782 0.51149 0.45495 0 2456024.50 4.42905 0.10581 4.48048 0.10495 21.42060 0.50177 0.45735 0 2456025.50 4.39449 0.10503 4.44831 0.10403 21.07020 0.49278 0.45948 0 2456026.50 4.36262 0.10514 4.45449 0.10579 20.92985 0.49706 0.46133 0 2456027.50 4.30788 0.10442 4.42905 0.10581 20.66805 0.49375 0.46292 0 2456028.50 4.29430 0.10455 4.39449 0.10503 20.39122 0.48734 0.46423 0 2456029.50 4.34482 0.10524 4.36262 0.10514 20.15352 0.48570 0.46526 0 2456030.50 4.35179 0.10578 4.36262 0.10514 20.08821 0.48412 0.46602 0 2456031.50 4.43596 0.10451 4.30788 0.10442 19.79559 0.47981 0.46650 0 2456032.50 4.45168 0.10574 4.29430 0.10455 19.71645 0.48004 0.46669 0 2456033.50 4.49003 0.10623 4.34482 0.10524 19.95537 0.48337 0.46661 0 2456034.50 4.56030 0.10786 4.35179 0.10578 20.01832 0.48660 0.46625 0 2456035.50 4.62612 0.10923 4.43596 0.10451 20.46155 0.48206 0.46561 0 2456036.50 4.69572 0.10966 4.45168 0.10574 20.61523 0.48965 0.46469 0 2456037.50 4.76172 0.11147 4.45168 0.10574 20.72163 0.49218 0.46350 0 2456038.50 4.81304 0.11080 4.49003 0.10623 21.03337 0.49763 0.46203 0 2456039.50 4.81151 0.11219 4.56030 0.10786 21.52479 0.50910 0.46029 0 2456040.50 4.80998 0.11168 4.62612 0.10923 22.02795 0.52012 0.45827 0 2456041.50 4.70967 0.11026 4.69572 0.10966 22.58404 0.52740 0.45598 0 2456042.50 4.66379 0.10917 4.76172 0.11147 23.15986 0.54217 0.45343 0 2456043.50 4.64398 0.10953 4.81304 0.11079 23.70269 0.54563 0.45062 0 2456044.50 4.63144 0.10892 4.81304 0.11079 24.02918 0.55315 0.44755 0 2456045.50 4.60587 0.10924 4.81151 0.11219 24.38252 0.56855 0.44422 0 2456046.50 4.57150 0.10951 4.80998 0.11168 24.77170 0.57517 0.44065 0 2456047.50 4.53663 0.10874 4.70967 0.11026 24.68061 0.57782 0.43683 0 2456048.50 4.48734 0.10842 4.66379 0.10917 24.89973 0.58286 0.43279 0 2456049.50 4.46128 0.10737 4.64398 0.10953 25.29124 0.59652 0.42851 0 2456050.50 4.43541 0.10736 4.64398 0.10953 25.83010 0.60923 0.42402 0 2456051.50 4.49272 0.10871 4.63144 0.10892 26.34108 0.61949 0.41932 0 2456052.50 4.47125 0.10822 4.60587 0.10924 26.81813 0.63609 0.41442 0 2456053.50 4.45963 0.10784 4.57161 0.10950 27.28292 0.65346 0.40934 0 2456054.50 4.41626 0.10728 4.53725 0.10867 27.78508 0.66549 0.40410 0 2456055.50 4.46532 0.10860 4.49002 0.10836 28.24460 0.68165 0.39871 0 2456056.50 4.46972 0.10867 4.49121 0.10833 29.05132 0.70075 0.39319 0 2456057.50 4.48966 0.10830 4.46613 0.10734 29.73480 0.71466 0.38755 0 2456058.50 4.49021 0.10896 4.43974 0.10722 30.45086 0.73541 0.38184 0 2456059.50 4.58067 0.11037 4.49150 0.10839 31.75947 0.76643 0.37606 0 2456060.50 4.64997 0.11037 4.49128 0.10833 32.76162 0.79023 0.37026 0 2456061.50 4.66826 0.11154 4.47447 0.10801 33.68652 0.81315 0.36445 0 2456062.50 4.71823 0.11202 4.47485 0.10817 34.78078 0.84076 0.35869 0 2456063.50 4.80655 0.11293 4.46351 0.10796 35.81927 0.86639 0.35300 0 2456064.50 4.84766 0.11323 4.46917 0.10804 37.02313 0.89505 0.34744 0 2456065.50 4.84038 0.11268 4.53061 0.10949 38.72706 0.93593 0.34204 0 2456066.50 4.83463 0.11276 4.54854 0.10950 40.08760 0.96507 0.33685 0 2456067.50 4.82080 0.11225 4.55624 0.10958 41.35653 0.99467 0.33192 0 2456068.50 4.78692 0.11154 4.58148 0.10965 42.76615 1.02350 0.32731 0 2456069.50 4.76374 0.11241 4.59370 0.11067 44.01490 1.06037 0.32306 0 2456070.50 4.71230 0.10894 4.60225 0.11081 45.16091 1.08734 0.31923 0 2456071.50 4.65205 0.10675 4.67487 0.11158 46.85466 1.11833 0.31587 0 2456072.50 4.60599 0.10685 4.68188 0.11167 47.78201 1.13967 0.31302 0 2456073.50 4.58942 0.10639 4.72080 0.11142 48.89177 1.15396 0.31073 0 2456074.50 4.56563 0.10567 4.75693 0.11280 49.80892 1.18111 0.30904 0 2456075.50 4.55933 0.10674 4.76256 0.11288 50.21844 1.19025 0.30796 0 2456076.50 4.52960 0.10702 4.79384 0.11321 50.69484 1.19718 0.30751 0 2456077.50 4.48415 0.10583 4.79813 0.11328 50.67521 1.19636 0.30771 0 2456078.50 4.48140 0.10572 4.85935 0.11348 51.04403 1.19202 0.30854 0 2456079.50 4.49321 0.10677 4.86570 0.11322 50.62974 1.17806 0.31001 0 2456080.50 4.55040 0.10982 4.86655 0.11321 49.97087 1.16251 0.31207 0 2456081.50 4.66551 0.11088 4.79658 0.11237 48.43116 1.13457 0.31470 0 2456082.50 4.74215 0.11238 4.78781 0.11190 47.38427 1.10742 0.31787 0 2456083.50 4.77242 0.11187 4.78599 0.11186 46.29607 1.08207 0.32152 0 2456084.50 4.78380 0.11261 4.77622 0.11229 45.04793 1.05912 0.32562 0 2456085.50 4.79511 0.11399 4.77470 0.11229 43.82022 1.03060 0.33009 0 2456086.50 4.81836 0.11342 4.69897 0.11090 41.89486 0.98875 0.33490 0 2456087.50 4.80533 0.11268 4.63075 0.10928 40.05869 0.94537 0.34000 0 2456088.50 4.85053 0.11413 4.62706 0.10920 38.80163 0.91571 0.34532 0 2456089.50 4.85610 0.11418 4.51206 0.10770 36.65841 0.87504 0.35083 0 2456090.50 4.89304 0.11383 4.40253 0.10504 34.64466 0.82657 0.35648 0 2456091.50 4.87579 0.11321 4.29589 0.10478 32.74288 0.79865 0.36222 0 2456092.50 4.77793 0.11223 4.28924 0.10474 31.67123 0.77339 0.36801 0 2456093.50 4.77053 0.11158 4.24078 0.10358 30.34791 0.74122 0.37382 0 2456094.50 4.76410 0.11231 4.22133 0.10302 29.29407 0.71489 0.37961 0 2456095.50 4.68208 0.11078 4.21252 0.10326 28.36809 0.69537 0.38535 0 2456096.50 4.60979 0.10879 4.21252 0.10326 27.55165 0.67536 0.39102 0 2456097.50 4.49247 0.10758 4.22775 0.10292 26.88033 0.65436 0.39659 0 2456098.50 4.38464 0.10492 4.21907 0.10332 26.10338 0.63923 0.40203 0 2456099.50 4.28109 0.10469 4.25809 0.10477 25.66335 0.63145 0.40733 0 2456100.50 4.23888 0.10356 4.36403 0.10666 25.65007 0.62688 0.41248 0 2456101.50 4.22133 0.10302 4.36403 0.10666 25.04332 0.61206 0.41744 0 2456102.50 4.21252 0.10326 4.46073 0.10925 25.02229 0.61284 0.42222 0 2456103.50 4.22775 0.10292 4.60489 0.11237 25.28021 0.61687 0.42680 0 2456104.50 4.21907 0.10332 4.62471 0.11162 24.87796 0.60042 0.43116 0 2456105.50 4.25809 0.10477 4.66863 0.11394 24.63896 0.60133 0.43529 0 2456106.50 4.36403 0.10666 4.66863 0.11394 24.20257 0.59068 0.43920 0 2456107.50 4.46073 0.10925 4.65627 0.11301 23.74036 0.57618 0.44287 0 2456108.50 4.60489 0.11237 4.65083 0.11309 23.35036 0.56778 0.44629 0 2456109.50 4.62471 0.11162 4.66850 0.11316 23.10959 0.56015 0.44946 0 2456110.50 4.66863 0.11394 4.69536 0.11394 22.94404 0.55675 0.45238 0 2456111.50 4.65627 0.11301 4.74631 0.11456 22.92334 0.55329 0.45503 0 2456112.50 4.65083 0.11309 4.76392 0.11489 22.76877 0.54913 0.45742 0 2456113.50 4.66850 0.11316 4.76392 0.11489 22.55914 0.54407 0.45954 0 2456114.50 4.69536 0.11394 4.83383 0.11569 22.70704 0.54345 0.46139 0 2456115.50 4.74631 0.11456 4.88191 0.11581 22.77696 0.54034 0.46296 0 2456116.50 4.76392 0.11489 4.84374 0.11307 22.47237 0.52458 0.46427 0 2456117.50 4.83383 0.11569 4.83738 0.11436 22.34409 0.52821 0.46529 0 2456118.50 4.88191 0.11581 4.82307 0.11455 22.20660 0.52743 0.46604 0 2456119.50 4.84374 0.11307 4.77267 0.11474 21.93043 0.52725 0.46651 0 2456120.50 4.83738 0.11436 4.77267 0.11474 21.91262 0.52682 0.46670 0 2456121.50 4.82307 0.11455 4.70367 0.11253 21.60418 0.51685 0.46661 0 2456122.50 4.77267 0.11474 4.61682 0.10821 21.23885 0.49778 0.46624 0 2456123.50 4.70367 0.11253 4.52556 0.10670 20.87703 0.49220 0.46559 0 2456124.50 4.61682 0.10821 4.39816 0.10450 20.37024 0.48400 0.46466 0 2456125.50 4.52556 0.10670 4.23662 0.10163 19.72408 0.47315 0.46346 0 2456126.50 4.39816 0.10450 4.16530 0.10049 19.51639 0.47086 0.46198 0 2456127.50 4.23662 0.10163 4.15552 0.10098 19.61910 0.47675 0.46023 0 2456128.50 4.16530 0.10049 4.15552 0.10098 19.79283 0.48097 0.45820 0 2456129.50 4.15552 0.10098 4.17931 0.10139 20.10691 0.48778 0.45591 0 2456130.50 4.17931 0.10139 4.17956 0.10128 20.33574 0.49279 0.45335 0 2456131.50 4.17956 0.10128 4.20555 0.10226 20.71932 0.50381 0.45053 0 2456132.50 4.20555 0.10226 4.27711 0.10526 21.36294 0.52573 0.44745 0 2456133.50 4.27711 0.10526 4.37449 0.10631 22.17847 0.53898 0.44412 0 2456134.50 4.37449 0.10631 4.37449 0.10631 22.54049 0.54778 0.44054 0 2456135.50 4.53235 0.10900 4.53235 0.10900 23.76452 0.57153 0.43671 0 2456136.50 4.63596 0.11063 4.63596 0.11063 24.76577 0.59100 0.43266 0 2456137.50 4.66575 0.11095 4.66575 0.11095 25.42579 0.60463 0.42837 0 2456138.50 4.70074 0.11115 4.70074 0.11115 26.16321 0.61863 0.42387 0 2456139.50 4.73083 0.11191 4.73083 0.11191 26.92526 0.63694 0.41917 0 2456140.50 4.74533 0.11204 4.73083 0.11191 27.56607 0.65210 0.41427 0 2456141.50 4.75915 0.11194 4.74533 0.11204 28.34159 0.66918 0.40919 0 2456142.50 4.82564 0.11345 4.75915 0.11194 29.16747 0.68608 0.40394 0 2456143.50 4.87971 0.11381 4.82564 0.11345 30.38130 0.71425 0.39854 0 2456144.50 4.92900 0.11541 4.87970 0.11381 31.59178 0.73682 0.39302 0 2456145.50 4.87946 0.11365 4.87970 0.11381 32.51753 0.75841 0.38738 0 2456146.50 4.83609 0.11317 4.92900 0.11541 33.83784 0.79227 0.38166 0 2456147.50 4.82080 0.11260 4.87946 0.11365 34.53535 0.80440 0.37588 0 2456148.50 4.79255 0.11189 4.83609 0.11317 35.31079 0.82633 0.37008 0 2456149.50 4.81921 0.11222 4.83609 0.11317 36.44451 0.85287 0.36428 0 2456150.50 4.76190 0.11174 4.82080 0.11260 37.50639 0.87600 0.35851 0 2456151.50 4.68104 0.11102 4.79255 0.11189 38.49739 0.89880 0.35283 0 2456152.50 4.56098 0.10999 4.81921 0.11222 39.96166 0.93055 0.34727 0 2456153.50 4.43198 0.10706 4.81921 0.11222 41.23318 0.96016 0.34187 0 2456154.50 4.33877 0.10593 4.76190 0.11174 42.00673 0.98571 0.33669 0 2456155.50 4.27962 0.10421 4.68104 0.11102 42.52684 1.00865 0.33177 0 2456156.50 4.26109 0.10379 4.68104 0.11102 43.73180 1.03723 0.32717 0 2456157.50 4.19154 0.10412 4.56098 0.10999 43.73492 1.05466 0.32293 0 2456158.50 4.18292 0.10404 4.43198 0.10706 43.52013 1.05132 0.31912 0 2456159.50 4.22836 0.10367 4.43198 0.10706 44.44708 1.07371 0.31577 0 2456160.50 4.25944 0.10340 4.33877 0.10593 44.30254 1.08161 0.31295 0 2456161.50 4.31993 0.10497 4.33877 0.10593 44.95283 1.09748 0.31067 0 2456162.50 4.37852 0.10521 4.27971 0.10421 44.82436 1.09150 0.30899 0 2456163.50 4.47076 0.10701 4.26098 0.10378 44.93642 1.09445 0.30793 0 2456164.50 4.54116 0.10774 4.26089 0.10377 45.05989 1.09741 0.30751 0 2456165.50 4.59676 0.10873 4.19763 0.10397 44.32848 1.09798 0.30772 0 2456166.50 4.65554 0.10951 4.19963 0.10392 44.10391 1.09139 0.30858 0 2456167.50 4.70661 0.11072 4.19293 0.10382 43.61398 1.07989 0.31006 0 2456168.50 4.69805 0.11086 4.23370 0.10370 43.45246 1.06437 0.31214 0 2456169.50 4.74722 0.11262 4.23455 0.10371 42.73203 1.04656 0.31479 0 2456170.50 4.87365 0.11352 4.26040 0.10346 42.13671 1.02326 0.31798 0 2456171.50 4.94962 0.11512 4.26051 0.10347 41.18242 1.00012 0.32164 0 2456172.50 5.00332 0.11589 4.31137 0.10457 40.63072 0.98548 0.32575 0 2456173.50 4.96564 0.11418 4.37790 0.10470 40.14382 0.96005 0.33024 0 2456174.50 4.99054 0.11345 4.37785 0.10466 38.99640 0.93226 0.33506 0 2456175.50 4.98515 0.11413 4.46787 0.10665 38.61331 0.92170 0.34016 0 2456176.50 4.91744 0.11417 4.57128 0.10804 38.29702 0.90510 0.34549 0 2456177.50 4.83304 0.11305 4.57300 0.10805 37.11734 0.87702 0.35100 0 2456178.50 4.75059 0.11175 4.63223 0.10925 36.41651 0.85889 0.35665 0 2456179.50 4.61278 0.10979 4.72508 0.11023 35.97894 0.83932 0.36239 0 2456180.50 4.51676 0.10819 4.77942 0.11147 35.25653 0.82229 0.36819 0 2456181.50 4.41926 0.10616 4.78233 0.11150 34.19080 0.79716 0.37399 0 2456182.50 4.33516 0.10473 4.83491 0.11249 33.52075 0.77989 0.37978 0 2456183.50 4.25791 0.10358 4.93054 0.11397 33.17324 0.76684 0.38553 0 2456184.50 4.25595 0.10255 5.01485 0.11495 32.77035 0.75114 0.39119 0 2456185.50 4.24702 0.10261 5.01905 0.11499 31.88427 0.73049 0.39675 0 2456186.50 4.25699 0.10384 5.06097 0.11618 31.28662 0.71824 0.40220 0 2456187.50 4.26335 0.10363 5.08139 0.11595 30.60126 0.69825 0.40749 0 2456188.50 4.29149 0.10365 4.98910 0.11442 29.30198 0.67198 0.41263 0 2456189.50 4.37663 0.10365 4.95404 0.11284 28.40886 0.64705 0.41759 0 2456190.50 4.46311 0.10605 4.95325 0.11282 27.76621 0.63244 0.42236 0 2456191.50 4.61609 0.10848 4.87329 0.11115 26.73652 0.60979 0.42693 0 2456192.50 4.67609 0.10990 4.77152 0.11018 25.65219 0.59234 0.43129 0 2456193.50 4.80404 0.11104 4.66909 0.10936 24.62746 0.57684 0.43542 0 2456194.50 4.85561 0.11226 4.58072 0.10810 23.73429 0.56011 0.43932 0 2456195.50 4.95775 0.11395 4.48054 0.10659 22.83319 0.54319 0.44298 0 2456196.50 5.08357 0.11510 4.34464 0.10433 21.80320 0.52356 0.44639 0 2456197.50 5.12473 0.11606 4.34190 0.10427 21.48396 0.51591 0.44955 0 2456198.50 5.13672 0.11690 4.25891 0.10291 20.80347 0.50269 0.45246 0 2456199.50 5.13115 0.11598 4.19945 0.10216 20.27529 0.49324 0.45511 0 2456200.50 5.00314 0.11455 4.20447 0.10237 20.08884 0.48911 0.45749 0 2456201.50 4.93353 0.11249 4.24321 0.10334 20.08804 0.48923 0.45960 0 2456202.50 4.81762 0.10967 4.24444 0.10361 19.93382 0.48662 0.46144 0 2456203.50 4.70312 0.10831 4.29955 0.10467 20.05612 0.48823 0.46301 0 2456204.50 4.59670 0.10773 4.30010 0.10468 19.94712 0.48557 0.46430 0 2456205.50 4.51003 0.10658 4.37037 0.10535 20.18460 0.48658 0.46532 0 2456206.50 4.42868 0.10534 4.45111 0.10636 20.49239 0.48966 0.46606 0 2456207.50 4.28103 0.10290 4.59986 0.10877 21.13548 0.49978 0.46652 0 2456208.50 4.20635 0.10185 4.74445 0.11147 21.78296 0.51180 0.46670 0 2456209.50 4.15760 0.10137 4.84921 0.11324 22.27333 0.52012 0.46660 0 2456210.50 4.18897 0.10202 4.96299 0.11457 22.83290 0.52709 0.46622 0 2456211.50 4.23974 0.10356 4.96634 0.11462 22.91278 0.52883 0.46556 0 2456212.50 4.24378 0.10387 5.07565 0.11602 23.51137 0.53741 0.46463 0 2456213.50 4.30971 0.10486 5.11208 0.11631 23.80412 0.54158 0.46342 0 2456214.50 4.39259 0.10571 5.10523 0.11597 23.92552 0.54351 0.46193 0 2456215.50 4.48189 0.10688 5.06232 0.11567 23.90635 0.54626 0.46017 0 2456216.50 4.63970 0.10968 5.07570 0.11494 24.18268 0.54764 0.45814 0 2456217.50 4.79071 0.11237 5.03467 0.11461 24.23003 0.55159 0.45584 0 2456218.50 4.88435 0.11395 5.03349 0.11459 24.49952 0.55773 0.45327 0 2456219.50 5.00240 0.11521 4.90297 0.11222 24.16497 0.55311 0.45044 0 2456220.50 5.10589 0.11657 4.85554 0.11199 24.26269 0.55962 0.44735 0 2456221.50 5.13739 0.11671 4.76483 0.10898 24.16903 0.55280 0.44401 0 2456222.50 5.11794 0.11615 4.61499 0.10911 23.79198 0.56249 0.44042 0 2456223.50 5.06075 0.11572 4.55248 0.10811 23.88326 0.56719 0.43659 0 2456224.50 5.07268 0.11487 4.57047 0.10908 24.43035 0.58309 0.43253 0 2456225.50 5.02962 0.11450 4.57047 0.10908 24.92224 0.59483 0.42824 0 2456226.50 4.89714 0.11213 4.48283 0.10801 24.96699 0.60156 0.42373 0 2456227.50 4.85353 0.11196 4.43684 0.10580 25.26977 0.60259 0.41902 0 2456228.50 4.76453 0.10898 4.36040 0.10400 25.42638 0.60646 0.41411 0 2456229.50 4.61499 0.10911 4.31355 0.10304 25.78275 0.61588 0.40903 0 2456230.50 4.55248 0.10811 4.31355 0.10304 26.45790 0.63200 0.40378 0 2456231.50 4.57047 0.10908 4.30544 0.10347 27.12903 0.65197 0.39837 1 2456232.50 4.48283 0.10801 4.33282 0.10333 28.07566 0.66955 0.39284 1 2456233.50 4.43684 0.10580 4.34651 0.10416 28.99049 0.69476 0.38721 1 2456234.50 4.36040 0.10400 4.39061 0.10626 30.16960 0.73016 0.38149 1 2456235.50 4.31355 0.10304 4.39061 0.10626 31.10479 0.75279 0.37571 1 2456236.50 4.30544 0.10347 4.44871 0.10666 32.51357 0.77951 0.36990 1 2456237.50 4.33282 0.10333 4.47320 0.10747 33.74264 0.81068 0.36410 1 2456238.50 4.34651 0.10416 4.56658 0.10842 35.56334 0.84432 0.35834 1 2456239.50 4.39061 0.10626 4.56658 0.10842 36.71817 0.87174 0.35266 1 2456240.50 4.44871 0.10666 4.67517 0.10922 38.80477 0.90654 0.34710 1 2456241.50 4.47320 0.10747 4.80127 0.11073 41.11866 0.94830 0.34171 1 2456242.50 4.56658 0.10842 4.80127 0.11073 42.39300 0.97769 0.33654 1 2456243.50 4.67517 0.10922 4.93497 0.11309 44.87323 1.02829 0.33163 1 2456244.50 4.80127 0.11073 5.05542 0.11587 47.26850 1.08344 0.32703 1 2456245.50 4.93497 0.11309 5.05542 0.11587 48.51318 1.11196 0.32281 1 2456246.50 5.05542 0.11587 5.12560 0.11670 50.36581 1.14671 0.31901 1 2456247.50 5.12560 0.11670 5.17634 0.11683 51.94315 1.17231 0.31568 1 2456248.50 5.17634 0.11683 5.17634 0.11683 52.88127 1.19348 0.31287 1 2456249.50 5.16145 0.11667 5.16145 0.11667 53.49723 1.20929 0.31061 1 2456250.50 5.17337 0.11681 5.16145 0.11667 54.07407 1.22233 0.30895 1 2456251.50 5.11385 0.11598 5.17337 0.11681 54.56639 1.23207 0.30791 1 2456252.50 5.10057 0.11656 5.11385 0.11598 54.08124 1.22651 0.30750 1 2456253.50 5.06767 0.11602 5.11385 0.11598 53.99817 1.22463 0.30774 1 2456254.50 4.91742 0.11310 5.10057 0.11656 53.55293 1.22380 0.30862 1 2456255.50 4.76717 0.11144 5.10057 0.11656 53.03625 1.21199 0.31012 1 2456256.50 4.68409 0.10964 5.06767 0.11602 51.98760 1.19024 0.31222 1 2456257.50 4.63742 0.10911 4.91742 0.11310 49.59472 1.14067 0.31488 1 2456258.50 4.60230 0.10871 4.91742 0.11310 48.60263 1.11785 0.31808 1 2456259.50 4.51757 0.10804 4.76717 0.11144 46.04569 1.07640 0.32176 1 2456260.50 4.49731 0.10763 4.68409 0.10964 44.10745 1.03245 0.32588 1 2456261.50 4.49683 0.10736 4.68409 0.10964 42.91422 1.00452 0.33038 1 2456262.50 4.44216 0.10722 4.63742 0.10911 41.27099 0.97103 0.33521 1 2456263.50 4.40665 0.10580 4.60230 0.10871 39.73764 0.93868 0.34032 1 2456264.50 4.38920 0.10481 4.60230 0.10871 38.51970 0.90991 0.34566 1 2456265.50 4.39808 0.10522 4.51757 0.10804 36.63165 0.87603 0.35118 1 2456266.50 4.35877 0.10563 4.49731 0.10763 35.32123 0.84533 0.35683 1 2456267.50 4.40699 0.10547 4.49731 0.10763 34.21116 0.81876 0.36257 1 2456268.50 4.35044 0.10659 4.49683 0.10736 33.13993 0.79120 0.36836 1 2456269.50 4.43364 0.10687 4.44206 0.10722 31.72788 0.76580 0.37417 1 2456270.50 4.46293 0.10729 4.40732 0.10584 30.52786 0.73309 0.37996 1 2456271.50 4.48935 0.10829 4.40789 0.10586 29.62988 0.71162 0.38570 1 2456272.50 4.51223 0.10818 4.39045 0.10494 28.66484 0.68516 0.39136 1 2456273.50 4.58650 0.10849 4.39875 0.10533 27.91997 0.66856 0.39692 1 2456274.50 4.66649 0.11011 4.36599 0.10577 26.96821 0.65334 0.40236 0 2456275.50 4.72316 0.11105 4.42104 0.10576 26.60362 0.63643 0.40765 1 2456276.50 4.76778 0.11074 4.42303 0.10580 25.95788 0.62094 0.41279 1 2456277.50 4.75756 0.10967 4.38570 0.10697 25.13173 0.61296 0.41774 0 2456278.50 4.73475 0.11033 4.47470 0.10754 25.06666 0.60242 0.42251 0 2456279.50 4.69909 0.10968 4.51123 0.10813 24.73430 0.59283 0.42707 0 2456280.50 4.64795 0.10903 4.53506 0.10891 24.36629 0.58517 0.43142 0 2456281.50 4.59327 0.10819 4.56059 0.10885 24.04159 0.57383 0.43554 0 2456282.50 4.55413 0.10759 4.56378 0.10890 23.63410 0.56394 0.43943 0 2456283.50 4.54030 0.10779 4.63290 0.10944 23.59809 0.55746 0.44309 0 2456284.50 4.52336 0.10856 4.70538 0.11084 23.60291 0.55601 0.44649 0 2456285.50 4.49559 0.10817 4.76716 0.11194 23.57843 0.55364 0.44965 0 2456286.50 4.43541 0.10727 4.82807 0.11237 23.57479 0.54870 0.45255 0 2456287.50 4.42819 0.10713 4.83155 0.11171 23.31924 0.53918 0.45518 0 2456288.50 4.45009 0.10677 4.81012 0.11197 22.97576 0.53481 0.45755 0 2456289.50 4.40880 0.10637 4.81313 0.11203 22.78016 0.53024 0.45966 0 2456290.50 4.43834 0.10735 4.77913 0.11147 22.43991 0.52338 0.46149 0 2456291.50 4.41131 0.10723 4.73584 0.11077 22.08709 0.51659 0.46305 0 2456292.50 4.40727 0.10681 4.69249 0.11021 21.76398 0.51114 0.46434 0 2456293.50 4.44036 0.10727 4.63864 0.10934 21.42116 0.50493 0.46534 0 2456294.50 4.54232 0.10828 4.60104 0.10894 21.18097 0.50153 0.46607 0 2456295.50 4.61609 0.10943 4.55892 0.10876 20.94649 0.49970 0.46653 0 2456296.50 4.71395 0.11145 4.55998 0.10876 20.93587 0.49936 0.46670 0 2456297.50 4.76514 0.11250 4.50066 0.10773 20.67303 0.49484 0.46659 0 2456298.50 4.75395 0.11188 4.43080 0.10615 20.38587 0.48839 0.46620 0 2456299.50 4.77322 0.11183 4.41464 0.10573 20.36958 0.48786 0.46554 0 2456300.50 4.80802 0.11306 4.43679 0.10509 20.55497 0.48686 0.46460 0 2456301.50 4.84240 0.11344 4.41152 0.10537 20.54569 0.49076 0.46338 0 2456302.50 4.91243 0.11487 4.41211 0.10613 20.68171 0.49749 0.46188 0 2456303.50 5.01525 0.11743 4.40560 0.10611 20.81031 0.50122 0.46011 0 2456304.50 5.04821 0.11771 4.40546 0.10608 20.99546 0.50556 0.45807 0 2456305.50 5.01885 0.11650 4.41679 0.10594 21.26336 0.51001 0.45576 0 2456306.50 4.97861 0.11591 4.43584 0.10600 21.59846 0.51614 0.45319 0 2456307.50 4.94417 0.11487 4.49431 0.10682 22.15978 0.52670 0.45035 0 2456308.50 4.91653 0.11475 4.52324 0.10716 22.61216 0.53569 0.44725 0 2456309.50 4.82068 0.11311 4.56719 0.10855 23.17764 0.55088 0.44390 0 2456310.50 4.72594 0.11131 4.57168 0.10851 23.58088 0.55969 0.44031 0 2456311.50 4.62881 0.10915 4.56694 0.10841 23.97244 0.56906 0.43647 0 2456312.50 4.50978 0.10695 4.54652 0.10667 24.31670 0.57053 0.43240 0 2456313.50 4.42287 0.10423 4.55335 0.10762 24.84455 0.58723 0.42810 0 2456314.50 4.39229 0.10343 4.57012 0.10752 25.47019 0.59924 0.42359 0 2456315.50 4.41577 0.10243 4.62281 0.10989 26.34756 0.62632 0.41887 0 2456316.50 4.41565 0.10387 4.66830 0.11079 27.24198 0.64650 0.41396 0 2456317.50 4.37406 0.10437 4.66210 0.11068 27.88770 0.66209 0.40887 0 2456318.50 4.39767 0.10455 4.72968 0.11233 29.03380 0.68955 0.40361 0 2456319.50 4.42892 0.10483 4.77554 0.11254 30.11654 0.70973 0.39821 0 2456320.50 4.43033 0.10446 4.77897 0.11226 30.99361 0.72807 0.39267 0 2456321.50 4.43834 0.10513 4.76181 0.11198 31.78904 0.74757 0.38703 0 2456322.50 4.41981 0.10463 4.75596 0.11188 32.71036 0.76945 0.38131 0 2456323.50 4.41112 0.10547 4.70899 0.11087 33.39195 0.78618 0.37553 0 2456324.50 4.37547 0.10446 4.71181 0.11146 34.46961 0.81542 0.36972 0 2456325.50 4.35589 0.10189 4.63611 0.11051 35.00554 0.83439 0.36392 0 2456326.50 4.36146 0.10396 4.63085 0.11043 36.09922 0.86085 0.35816 0 2456327.50 4.37326 0.10294 4.59910 0.10856 37.01583 0.87378 0.35249 0 2456328.50 4.45088 0.10711 4.51249 0.10670 37.49080 0.88650 0.34693 0 2456329.50 4.48782 0.10777 4.50906 0.10663 38.65282 0.91406 0.34155 0 2456330.50 4.54299 0.10899 4.42655 0.10653 39.12033 0.94144 0.33638 0 2456331.50 4.60869 0.10938 4.40109 0.10593 40.05391 0.96409 0.33148 0 2456332.50 4.64208 0.10984 4.40043 0.10598 41.17837 0.99178 0.32690 0 2456333.50 4.64691 0.10990 4.43255 0.10628 42.56843 1.02069 0.32269 0 2456334.50 4.60312 0.10907 4.42342 0.10694 43.49577 1.05159 0.31890 0 2456335.50 4.62765 0.11011 4.42365 0.10708 44.41663 1.07516 0.31559 0 2456336.50 4.56734 0.10953 4.49608 0.10910 45.95459 1.11512 0.31279 0 2456337.50 4.56141 0.10775 4.44158 0.10747 46.05377 1.11434 0.31055 0 2456338.50 4.48220 0.10606 4.44158 0.10747 46.54483 1.12622 0.30891 0 2456339.50 4.41082 0.10645 4.41473 0.10702 46.57132 1.12894 0.30789 0 2456340.50 4.39773 0.10620 4.41473 0.10702 46.68847 1.13178 0.30750 0 2456341.50 4.43608 0.10653 4.34170 0.10594 45.83974 1.11852 0.30776 0 2456342.50 4.42385 0.10719 4.30084 0.10406 45.14553 1.09232 0.30865 0 2456343.50 4.49608 0.10910 4.30084 0.10406 44.70460 1.08165 0.31017 0 2456344.50 4.44158 0.10747 4.27717 0.10413 43.85747 1.06777 0.31229 0 2456345.50 4.41473 0.10702 4.27717 0.10413 43.11279 1.04964 0.31497 0 2456346.50 4.34170 0.10594 4.28843 0.10381 42.35764 1.02537 0.31819 0 2456347.50 4.30084 0.10406 4.32513 0.10471 41.74486 1.01065 0.32188 0 2456348.50 4.27717 0.10413 4.32513 0.10471 40.69424 0.98521 0.32601 0 2456349.50 4.28843 0.10381 4.29295 0.10529 39.29666 0.96380 0.33052 0 2456350.50 4.32513 0.10471 4.26402 0.10534 37.91335 0.93665 0.33536 0 2456351.50 4.29295 0.10529 4.26402 0.10534 36.78220 0.90870 0.34048 0 2456352.50 4.26402 0.10534 4.28659 0.10463 35.84280 0.87490 0.34582 0 2456353.50 4.28659 0.10463 4.31864 0.10516 34.98443 0.85187 0.35135 0 2456354.50 4.31864 0.10516 4.31864 0.10516 33.88480 0.82509 0.35700 0 2456355.50 4.46042 0.10790 4.46042 0.10790 33.89746 0.82003 0.36275 0 2456356.50 4.55070 0.10938 4.55070 0.10938 33.50455 0.80533 0.36854 0 2456357.50 4.66893 0.11158 4.66893 0.11158 33.31665 0.79624 0.37435 0 2456358.50 4.72208 0.11200 4.66893 0.11158 32.30985 0.77218 0.38014 0 2456359.50 4.74160 0.11168 4.72208 0.11200 31.71317 0.75221 0.38588 0 2456360.50 4.75585 0.11152 4.74160 0.11168 30.93024 0.72848 0.39154 0 2456361.50 4.75095 0.11148 4.75585 0.11152 30.16095 0.70723 0.39709 0 2456362.50 4.76863 0.11141 4.75095 0.11148 29.32208 0.68802 0.40253 0 2456363.50 4.78288 0.11253 4.75095 0.11148 28.56648 0.67030 0.40781 0 2456364.50 4.80521 0.11274 4.76863 0.11141 27.96518 0.65333 0.41294 0 2456365.50 4.80172 0.11296 4.78288 0.11253 27.38821 0.64438 0.41789 0 2456366.50 4.67499 0.11076 4.80521 0.11274 26.89991 0.63112 0.42265 0 2456367.50 4.65719 0.11103 4.80172 0.11296 26.31018 0.61892 0.42721 0 2456368.50 4.62336 0.11043 4.80172 0.11296 25.78349 0.60653 0.43155 0 2456369.50 4.61077 0.10988 4.67499 0.11076 24.63074 0.58356 0.43566 0 2456370.50 4.55137 0.10816 4.65719 0.11103 24.10513 0.57469 0.43955 0 2456371.50 4.44966 0.10660 4.62336 0.11043 23.53802 0.56220 0.44319 0 2456372.50 4.39412 0.10634 4.61076 0.10988 23.11790 0.55094 0.44659 0 2456373.50 4.35571 0.10459 4.55137 0.10816 22.50186 0.53474 0.44974 0 2456374.50 4.29821 0.10417 4.55137 0.10816 22.21542 0.52794 0.45263 0 2456375.50 4.27436 0.10444 4.44966 0.10660 21.46883 0.51431 0.45526 0 2456376.50 4.26708 0.10396 4.39412 0.10634 20.98241 0.50779 0.45762 0 2456377.50 4.27595 0.10385 4.35571 0.10459 20.60981 0.49487 0.45972 0 2456378.50 4.28274 0.10324 4.29821 0.10417 20.17728 0.48902 0.46154 0 2456379.50 4.27870 0.10387 4.27436 0.10444 19.93110 0.48698 0.46309 0 2456380.50 4.31834 0.10487 4.26708 0.10396 19.78795 0.48211 0.46437 0 2456381.50 4.38519 0.10595 4.27595 0.10385 19.74400 0.47953 0.46537 0 2456382.50 4.44801 0.10719 4.27595 0.10385 19.68291 0.47804 0.46609 0 2456383.50 4.52116 0.10854 4.28274 0.10324 19.67675 0.47433 0.46653 0 2456384.50 4.66581 0.11087 4.27870 0.10387 19.64441 0.47689 0.46670 0 2456385.50 4.71976 0.11235 4.31834 0.10487 19.83620 0.48172 0.46658 0 2456386.50 4.74912 0.11309 4.38519 0.10595 20.17742 0.48749 0.46619 0 2456387.50 4.80521 0.11309 4.44801 0.10719 20.52572 0.49466 0.46551 0 2456388.50 4.86025 0.11395 4.52116 0.10854 20.94885 0.50293 0.46456 0 2456389.50 4.88545 0.11420 4.52116 0.10854 21.06009 0.50560 0.46333 0 2456390.50 4.96680 0.11530 4.66581 0.11087 21.87568 0.51980 0.46183 0 2456391.50 4.98448 0.11664 4.71976 0.11235 22.29995 0.53081 0.46005 0 2456392.50 5.00607 0.11666 4.74912 0.11309 22.63988 0.53914 0.45800 0 2456393.50 4.94497 0.11611 4.80521 0.11309 23.14089 0.54464 0.45569 0 2456394.50 4.85781 0.11410 4.86026 0.11395 23.67365 0.55506 0.45310 0 2456395.50 4.80992 0.11350 4.88545 0.11420 24.09810 0.56333 0.45026 0 2456396.50 4.68563 0.11106 4.88545 0.11420 24.43374 0.57117 0.44715 0 2456397.50 4.63083 0.10997 4.96680 0.11530 25.21770 0.58538 0.44380 0 2456398.50 4.56245 0.10838 4.98448 0.11664 25.72347 0.60192 0.44020 0 2456399.50 4.47675 0.10556 5.00602 0.11665 26.29186 0.61267 0.43635 0 2456400.50 4.39944 0.10504 4.94371 0.11606 26.45677 0.62109 0.43227 0 2456401.50 4.26396 0.10300 4.85541 0.11403 26.50942 0.62257 0.42797 0 2456402.50 4.24537 0.10066 4.85419 0.11399 27.07145 0.63573 0.42345 0 2456403.50 4.25326 0.10208 4.80394 0.11332 27.39922 0.64630 0.41873 0 2456404.50 4.30427 0.10319 4.68355 0.11094 27.35127 0.64786 0.41381 0 2456405.50 4.28647 0.10282 4.62953 0.10995 27.71442 0.65823 0.40871 0 2456406.50 4.32042 0.10223 4.57397 0.10864 28.10069 0.66744 0.40345 0 2456407.50 4.36702 0.10112 4.50352 0.10634 28.42506 0.67117 0.39804 0 2456408.50 4.43590 0.10403 4.50740 0.10645 29.25791 0.69097 0.39250 0 2456409.50 4.48935 0.10524 4.45222 0.10628 29.74909 0.71018 0.38686 0 2456410.50 4.61517 0.10576 4.35629 0.10496 29.98926 0.72253 0.38113 0 2456411.50 4.79560 0.11267 4.36695 0.10356 30.99583 0.73505 0.37535 0 2456412.50 4.89365 0.11566 4.37971 0.10386 32.07103 0.76056 0.36954 0 2456413.50 4.96619 0.11550 4.39275 0.10484 33.20041 0.79240 0.36374 0 2456414.50 5.03274 0.11579 4.43339 0.10578 34.59380 0.82538 0.35799 0 2456415.50 5.00265 0.11621 4.41364 0.10535 35.55792 0.84874 0.35231 0 2456416.50 4.95943 0.11477 4.42449 0.10557 36.79523 0.87792 0.34677 1 2456417.50 4.96179 0.11409 4.44404 0.10540 38.13160 0.90439 0.34139 1 2456418.50 4.97255 0.11429 4.48708 0.10496 39.69173 0.92844 0.33623 0 2456419.50 4.91842 0.11390 4.49614 0.10525 40.95489 0.95869 0.33133 0 2456420.50 4.85016 0.11219 4.54191 0.10731 42.53734 1.00501 0.32676 0 2456421.50 4.76698 0.11143 4.57598 0.10768 43.97931 1.03490 0.32257 0 2456422.50 4.69878 0.11016 4.58182 0.10784 45.08413 1.06117 0.31879 0 2456423.50 4.65511 0.10930 4.65251 0.10841 46.74224 1.08920 0.31549 0 2456424.50 4.61523 0.10980 4.65483 0.10858 47.60065 1.11034 0.31271 0 2456425.50 4.67958 0.11104 4.77630 0.11181 49.54330 1.15978 0.31049 0 2456426.50 4.71095 0.11237 4.83726 0.11413 50.70460 1.19637 0.30887 0 2456427.50 4.75591 0.11344 4.83417 0.11405 51.00312 1.20330 0.30787 0 2456428.50 4.82031 0.11477 4.85311 0.11358 51.32511 1.20120 0.30750 0 2456429.50 4.90411 0.11635 4.84750 0.11349 51.17397 1.19804 0.30778 0 2456430.50 4.87567 0.11441 4.88985 0.11373 51.31585 1.19350 0.30869 0 2456431.50 4.83102 0.11373 4.90785 0.11487 50.99563 1.19358 0.31023 0 2456432.50 4.76276 0.11230 4.90387 0.11482 50.25969 1.17674 0.31236 0 2456433.50 4.71481 0.11234 4.86163 0.11381 48.97573 1.14648 0.31507 0 2456434.50 4.72215 0.11246 4.85799 0.11377 47.95126 1.12299 0.31829 0 2456435.50 4.70771 0.11243 4.80536 0.11235 46.34529 1.08356 0.32200 0 2456436.50 4.69695 0.11109 4.76767 0.11102 44.82149 1.04367 0.32614 0 2456437.50 4.69389 0.11136 4.76136 0.11091 43.54646 1.01441 0.33067 0 2456438.50 4.75946 0.11106 4.71335 0.11094 41.87029 0.98553 0.33551 0 2456439.50 4.79377 0.11296 4.65140 0.10986 40.08590 0.94676 0.34064 0 2456440.50 4.78570 0.11244 4.64635 0.10980 38.81352 0.91721 0.34599 0 2456441.50 4.82521 0.11279 4.62073 0.11032 37.39500 0.89278 0.35152 0 2456442.50 4.87084 0.11435 4.61058 0.11016 36.13996 0.86347 0.35718 0 2456443.50 4.83389 0.11353 4.55248 0.10986 34.56328 0.83409 0.36292 0 2456444.50 4.77475 0.11201 4.55248 0.10986 33.48525 0.80808 0.36872 0 2456445.50 4.73536 0.11050 4.53131 0.10690 32.30392 0.76209 0.37453 0 2456446.50 4.69456 0.11067 4.51278 0.10505 31.20022 0.72627 0.38031 0 2456447.50 4.63890 0.10971 4.46801 0.10402 29.97964 0.69793 0.38605 0 2456448.50 4.61890 0.11030 4.46801 0.10402 29.11999 0.67791 0.39171 0 2456449.50 4.61058 0.11016 4.51926 0.10489 28.63626 0.66463 0.39726 0 2456450.50 4.55248 0.10986 4.49602 0.10609 27.72603 0.65424 0.40269 0 2456451.50 4.53131 0.10690 4.48373 0.10625 26.93860 0.63835 0.40797 0 2456452.50 4.51278 0.10505 4.45820 0.10747 26.12516 0.62981 0.41310 0 2456453.50 4.46801 0.10402 4.45820 0.10747 25.51084 0.61500 0.41804 0 2456454.50 4.51926 0.10489 4.49843 0.10717 25.16553 0.59952 0.42279 0 2456455.50 4.49602 0.10609 4.50874 0.10416 24.68910 0.57036 0.42734 0 2456456.50 4.48373 0.10625 4.59584 0.10576 24.66318 0.56753 0.43168 0 2456457.50 4.45820 0.10747 4.65321 0.10794 24.50223 0.56836 0.43579 1 2456458.50 4.49843 0.10717 4.65401 0.11043 24.07603 0.57126 0.43966 1 2456459.50 4.50874 0.10416 4.65401 0.11043 23.68250 0.56192 0.44330 0 2456460.50 4.59584 0.10576 4.68074 0.11048 23.45820 0.55369 0.44669 0 2456461.50 4.65321 0.10794 4.72710 0.10996 23.36104 0.54342 0.44983 0 2456462.50 4.65401 0.11043 4.73786 0.10915 23.11705 0.53258 0.45272 0 2456463.50 4.68074 0.11048 4.76527 0.11062 22.98387 0.53353 0.45534 0 2456464.50 4.72710 0.10996 4.85469 0.11047 23.17477 0.52736 0.45769 0 2456465.50 4.73786 0.10915 4.85469 0.11047 22.96483 0.52259 0.45978 0 2456466.50 4.76527 0.11062 4.82649 0.11464 22.65213 0.53806 0.46160 0 2456467.50 4.85469 0.11047 4.70655 0.11180 21.94227 0.52122 0.46314 0 2456468.50 4.82649 0.11464 4.63407 0.11077 21.48658 0.51360 0.46441 0 2456469.50 4.70655 0.11180 4.58642 0.10952 21.17519 0.50565 0.46540 0 2456470.50 4.63407 0.11077 4.54917 0.10867 20.93900 0.50020 0.46611 0 2456471.50 4.58642 0.10952 4.54269 0.10752 20.87024 0.49399 0.46654 0 2456472.50 4.54917 0.10867 4.54269 0.10752 20.85637 0.49366 0.46670 0 2456473.50 4.54269 0.10752 4.50764 0.10782 20.70647 0.49528 0.46658 0 2456474.50 4.50764 0.10782 4.49229 0.10800 20.67167 0.49699 0.46617 0 2456475.50 4.49229 0.10800 4.49847 0.10959 20.76081 0.50578 0.46549 0 2456476.50 4.49847 0.10959 4.51223 0.10950 20.91049 0.50745 0.46453 0 2456477.50 4.51223 0.10950 4.58416 0.11136 21.35741 0.51882 0.46329 0 2456478.50 4.58416 0.11136 4.63217 0.11110 21.72270 0.52099 0.46178 0 2456479.50 4.63217 0.11110 4.65376 0.11079 21.99375 0.52362 0.45999 0 2456480.50 4.65376 0.11080 4.65376 0.11079 22.19180 0.52833 0.45794 0 2456481.50 4.68031 0.11196 4.68031 0.11196 22.54685 0.53938 0.45561 0 2456482.50 4.64208 0.11152 4.64208 0.11152 22.61927 0.54339 0.45302 0 2456483.50 4.59817 0.11004 4.59817 0.11004 22.69021 0.54300 0.45017 0 2456484.50 4.56893 0.10947 4.56893 0.10947 22.86082 0.54773 0.44706 0 2456485.50 4.62679 0.11019 4.62679 0.11019 23.50268 0.55973 0.44369 0 2456486.50 4.65156 0.11078 4.62679 0.11019 23.88993 0.56896 0.44008 0 2456487.50 4.64220 0.11005 4.65156 0.11078 24.44382 0.58212 0.43623 0 2456488.50 4.64532 0.11014 4.64220 0.11005 24.85802 0.58931 0.43214 0 2456489.50 4.62516 0.11053 4.64532 0.11014 25.37842 0.60171 0.42783 1 2456490.50 4.64220 0.11043 4.62516 0.11053 25.81142 0.61685 0.42331 1 2456491.50 4.63096 0.11092 4.64220 0.11043 26.49545 0.63030 0.41858 1 2456492.50 4.71523 0.11207 4.64220 0.11043 27.12995 0.64539 0.41365 1 2456493.50 4.79852 0.11267 4.63096 0.11092 27.74456 0.66451 0.40855 1 2456494.50 4.80457 0.11312 4.71523 0.11207 28.99209 0.68907 0.40328 1 2456495.50 4.79371 0.11302 4.79852 0.11267 30.31255 0.71172 0.39787 1 2456496.50 4.71011 0.11223 4.80457 0.11312 31.21414 0.73494 0.39233 1 2456497.50 4.70647 0.11187 4.80457 0.11312 32.13240 0.75656 0.38668 1 2456498.50 4.65223 0.11178 4.79371 0.11302 33.03107 0.77878 0.38096 1 2456499.50 4.57262 0.11085 4.71011 0.11223 33.46318 0.79733 0.37517 1 2456500.50 4.51216 0.10893 4.70647 0.11187 34.49696 0.81994 0.36937 1 2456501.50 4.48623 0.10841 4.70647 0.11187 35.60617 0.84630 0.36357 1 2456502.50 4.45036 0.10789 4.65223 0.11178 36.33701 0.87310 0.35781 1 2456503.50 4.46612 0.10749 4.57262 0.11085 36.87475 0.89394 0.35214 1 2456504.50 4.46756 0.10766 4.51216 0.10893 37.56062 0.90678 0.34660 1 2456505.50 4.50267 0.10852 4.51216 0.10893 38.75276 0.93556 0.34122 1 2456506.50 4.57431 0.10937 4.48623 0.10841 39.72069 0.95989 0.33607 1 2456507.50 4.61874 0.11079 4.45036 0.10789 40.57344 0.98358 0.33119 1 2456508.50 4.62307 0.11023 4.45036 0.10789 41.71431 1.01124 0.32663 1 2456509.50 4.58506 0.11053 4.46612 0.10749 42.95597 1.03388 0.32244 1 2456510.50 4.59276 0.10941 4.46756 0.10766 43.98978 1.06004 0.31868 1 2456511.50 4.59454 0.11014 4.46756 0.10766 44.91070 1.08224 0.31540 1 2456512.50 4.55513 0.11086 4.50361 0.10857 46.07675 1.11079 0.31264 1 2456513.50 4.52196 0.11004 4.50512 0.10865 46.74807 1.12740 0.31044 1 2456514.50 4.46080 0.10865 4.57544 0.10947 47.97260 1.14775 0.30883 1 2456515.50 4.48161 0.10869 4.61255 0.11066 48.67146 1.16766 0.30785 1 2456516.50 4.51669 0.11001 4.61081 0.11062 48.76300 1.16990 0.30750 1 2456517.50 4.53734 0.11019 4.61066 0.11025 48.66788 1.16370 0.30779 1 2456518.50 4.53112 0.11179 4.60844 0.11025 48.35077 1.15669 0.30873 1 2456519.50 4.65531 0.11296 4.58259 0.11055 47.59850 1.14822 0.31028 1 2456520.50 4.75169 0.11426 4.58113 0.10931 46.92945 1.11983 0.31244 1 2456521.50 4.74695 0.11388 4.57982 0.10930 46.11003 1.10048 0.31516 1 2456522.50 4.80730 0.11449 4.58815 0.11006 45.25740 1.08566 0.31840 1 2456523.50 4.82375 0.11411 4.58759 0.11006 44.21181 1.06065 0.32212 1 2456524.50 4.82793 0.11429 4.54721 0.11067 42.71402 1.03957 0.32628 1 2456525.50 4.86731 0.11475 4.53113 0.10994 41.40472 1.00465 0.33081 1 2456526.50 4.79555 0.11422 4.53171 0.10994 40.21996 0.97572 0.33567 1 2456527.50 4.76915 0.11354 4.45214 0.10861 38.33251 0.93508 0.34080 1 2456528.50 4.71036 0.11328 4.45646 0.10850 37.19134 0.90546 0.34616 1 2456529.50 4.63990 0.11161 4.45526 0.10849 36.02073 0.87712 0.35169 1 2456530.50 4.55886 0.11035 4.45743 0.10904 34.90525 0.85387 0.35735 1 2456531.50 4.56394 0.11009 4.45097 0.10925 33.75969 0.82865 0.36310 1 2456532.50 4.55266 0.11110 4.47299 0.10709 32.86888 0.78692 0.36890 1 2456533.50 4.58842 0.11055 4.47099 0.10693 31.84363 0.76156 0.37471 1 2456534.50 4.56275 0.10957 4.53995 0.11191 31.35889 0.77298 0.38049 1 2456535.50 4.55127 0.11030 4.57852 0.11247 30.69338 0.75396 0.38622 1 2456536.50 4.57449 0.11060 4.58173 0.11257 29.83501 0.73300 0.39188 1 2456537.50 4.54877 0.10904 4.57743 0.11253 28.98026 0.71245 0.39743 1 2456538.50 4.57477 0.10991 4.59031 0.11232 28.28441 0.69211 0.40285 1 2456539.50 4.53421 0.11036 4.54042 0.11098 27.25791 0.66628 0.40813 1 2456540.50 4.54458 0.10981 4.51339 0.11028 26.42880 0.64574 0.41325 1 2456541.50 4.44181 0.10855 4.48502 0.11023 25.64602 0.63031 0.41819 1 2456542.50 4.42918 0.10828 4.47756 0.11014 25.03189 0.61575 0.42294 1 2456543.50 4.40371 0.10816 4.45543 0.10993 24.38161 0.60156 0.42748 1 2456544.50 4.37905 0.10847 4.41831 0.10958 23.69625 0.58769 0.43181 1 2456545.50 4.42841 0.10348 4.43118 0.10966 23.31996 0.57712 0.43591 1 2456546.50 4.46436 0.11122 4.50154 0.11023 23.27507 0.56992 0.43978 1 2456547.50 4.47335 0.11138 4.51661 0.11037 22.97218 0.56134 0.44341 1 2456548.50 4.48859 0.11182 4.54131 0.11096 22.74927 0.55585 0.44679 1 2456549.50 4.48448 0.11127 4.54099 0.11097 22.43209 0.54820 0.44993 1 2456550.50 4.41174 0.10957 4.57890 0.11146 22.33311 0.54362 0.45280 1 2456551.50 4.38026 0.10858 4.64717 0.11312 22.40679 0.54543 0.45541 1 2456552.50 4.33418 0.10845 4.69061 0.11235 22.38487 0.53618 0.45776 1 2456553.50 4.33878 0.10846 4.66441 0.11233 22.05897 0.53121 0.45984 1 2456554.50 4.30617 0.10831 4.62181 0.11173 21.68668 0.52425 0.46165 1 2456555.50 4.34806 0.10858 4.53503 0.11141 21.13872 0.51930 0.46318 1 2456556.50 4.46320 0.10984 4.53487 0.11144 21.02350 0.51662 0.46444 1 2456557.50 4.50573 0.11037 4.47812 0.11075 20.67285 0.51126 0.46542 1 2456558.50 4.53590 0.11117 4.47056 0.11078 20.57562 0.50987 0.46613 1 2456559.50 4.58427 0.11153 4.39833 0.10902 20.20624 0.50084 0.46655 1 2456560.50 4.65826 0.11361 4.39194 0.10785 20.16423 0.49517 0.46670 1 2456561.50 4.71278 0.11284 4.38884 0.10755 20.16146 0.49405 0.46657 1 2456562.50 4.68235 0.11265 4.40239 0.10792 20.25943 0.49666 0.46616 1 2456563.50 4.62865 0.11189 4.40237 0.10792 20.31952 0.49812 0.46546 1 2456564.50 4.53323 0.11172 4.40522 0.10819 20.41755 0.50144 0.46450 1 2456565.50 4.46799 0.11084 4.41119 0.10867 20.55529 0.50637 0.46325 1 2456566.50 4.46469 0.11082 4.48081 0.11043 21.01750 0.51797 0.46173 1 2456567.50 4.38660 0.10896 4.49317 0.11198 21.24023 0.52935 0.45994 1 2456568.50 4.38854 0.10781 4.57163 0.10954 21.80653 0.52251 0.45787 1 2456569.50 4.38656 0.10750 4.61157 0.11209 22.22306 0.54014 0.45554 1 2456570.50 4.40233 0.10791 4.61157 0.11209 22.47888 0.54635 0.45294 1 2456571.50 4.40583 0.10818 4.61375 0.11264 22.77638 0.55606 0.45007 1 2456572.50 4.41097 0.10873 4.52871 0.11191 22.66967 0.56018 0.44696 1 2456573.50 4.48084 0.11043 4.53564 0.11089 23.05077 0.56357 0.44358 1 2456574.50 4.49317 0.11198 4.48485 0.11144 23.16912 0.57569 0.43997 1 2456575.50 4.57163 0.10954 4.49631 0.11255 23.64119 0.59176 0.43611 1 2456576.50 4.61157 0.11209 4.53578 0.11137 24.30262 0.59672 0.43202 1 2456577.50 4.61375 0.11264 4.53578 0.11137 24.79566 0.60883 0.42770 1 2456578.50 4.52871 0.11191 4.54718 0.11145 25.39330 0.62237 0.42317 1 2456579.50 4.53564 0.11089 4.54713 0.11166 25.97122 0.63773 0.41843 1 2456580.50 4.48485 0.11144 4.54565 0.11185 26.58541 0.65419 0.41350 1 2456581.50 4.49631 0.11255 4.57600 0.11247 27.43664 0.67436 0.40839 1 2456582.50 4.53578 0.11137 4.57600 0.11247 28.15892 0.69211 0.40312 1 2456583.50 4.54718 0.11145 4.65091 0.11380 29.40494 0.71951 0.39770 1 2456584.50 4.54713 0.11166 4.68318 0.11414 30.45214 0.74220 0.39216 1 2456585.50 4.54565 0.11185 4.69793 0.11419 31.44757 0.76441 0.38651 1 2456586.50 4.57600 0.11247 4.68886 0.11482 32.33861 0.79191 0.38078 1 2456587.50 4.65091 0.11380 4.68886 0.11482 33.34383 0.81652 0.37500 1 2456588.50 4.68318 0.11414 4.69957 0.11446 34.47964 0.83979 0.36919 1 2456589.50 4.69793 0.11419 4.64559 0.11384 35.17992 0.86206 0.36339 1 2456590.50 4.68886 0.11482 4.60971 0.11237 36.04022 0.87858 0.35764 1 2456591.50 4.69957 0.11446 4.60971 0.11237 37.21021 0.90710 0.35197 1 2456592.50 4.64559 0.11384 4.65152 0.11233 38.75818 0.93601 0.34643 1 2456593.50 4.60971 0.11237 4.52906 0.11146 38.93473 0.95819 0.34106 1 2456594.50 4.65152 0.11233 4.52906 0.11146 40.13660 0.98777 0.33592 1 2456595.50 4.52906 0.11146 4.47932 0.11100 40.87318 1.01286 0.33104 1 2456596.50 4.47932 0.11100 4.42148 0.11068 41.47764 1.03828 0.32650 1 2456597.50 4.42148 0.11068 4.42148 0.11068 42.55876 1.06534 0.32232 1 2456598.50 4.45354 0.11036 4.45354 0.11036 43.88144 1.08738 0.31858 1 2456599.50 4.49280 0.11060 4.49280 0.11060 45.19090 1.11247 0.31531 1 2456600.50 4.52587 0.11124 4.49280 0.11060 45.98851 1.13211 0.31256 1 2456601.50 4.62460 0.11205 4.52587 0.11124 46.98108 1.15472 0.31038 1 2456602.50 4.62076 0.11244 4.52587 0.11124 47.46508 1.16661 0.30879 1 2456603.50 4.62040 0.11269 4.62460 0.11205 48.80497 1.18252 0.30783 1 2456604.50 4.53592 0.11195 4.62076 0.11244 48.86835 1.18917 0.30750 1 2456605.50 4.48916 0.11120 4.62076 0.11244 48.76834 1.18674 0.30781 1 2456606.50 4.48366 0.11114 4.62040 0.11269 48.46410 1.18202 0.30877 1 2456607.50 4.45825 0.10981 4.62040 0.11269 47.97351 1.17006 0.31034 1 2456608.50 4.49117 0.11044 4.53592 0.11195 46.44401 1.14630 0.31251 1 2456609.50 4.47158 0.11022 4.48916 0.11120 45.17096 1.11888 0.31525 1 2456610.50 4.66615 0.11212 4.48916 0.11120 44.25121 1.09610 0.31851 1 2456611.50 4.73105 0.11442 4.48366 0.11114 43.17772 1.07032 0.32225 1 2456612.50 4.81062 0.11590 4.45825 0.10981 41.84412 1.03065 0.32641 1 2456613.50 4.87451 0.11821 4.45825 0.10981 40.70323 1.00255 0.33095 1 2456614.50 4.92883 0.11829 4.49117 0.11044 39.82378 0.97924 0.33582 1 2456615.50 4.92190 0.11740 4.47158 0.11022 38.46350 0.94806 0.34096 1 2456616.50 4.86459 0.11652 4.47158 0.11022 37.28148 0.91892 0.34633 1 2456617.50 4.71087 0.11579 4.66633 0.11212 37.69033 0.90564 0.35186 1 2456618.50 4.61910 0.11283 4.73412 0.11449 37.03563 0.89568 0.35753 1 2456619.50 4.55110 0.11156 4.73685 0.11455 35.89294 0.86801 0.36328 1 2456620.50 4.42971 0.11029 4.81683 0.11601 35.36140 0.85164 0.36908 1 2456621.50 4.35513 0.10945 4.87541 0.11822 34.69111 0.84119 0.37488 1 2456622.50 4.28349 0.10859 4.92167 0.11826 33.96403 0.81608 0.38067 1 2456623.50 4.22659 0.10801 4.92042 0.11825 32.95562 0.79201 0.38640 1 2456624.50 4.25012 0.10840 4.90704 0.11742 31.92531 0.76394 0.39205 1 2456625.50 4.30474 0.10865 4.84871 0.11661 30.67179 0.73765 0.39760 1 2456626.50 4.30249 0.10917 4.71012 0.11596 28.99904 0.71395 0.40302 1 2456627.50 4.35293 0.10927 4.62485 0.11343 27.74309 0.68046 0.40829 1 2456628.50 4.41836 0.11007 4.62531 0.11348 27.06396 0.66402 0.41340 1 2456629.50 4.49041 0.11143 4.54545 0.11170 25.97318 0.63827 0.41834 1 2456630.50 4.48209 0.11154 4.44136 0.11045 24.81282 0.61705 0.42308 1 2456631.50 4.45958 0.11082 4.36905 0.10958 23.89371 0.59928 0.42761 1 2456632.50 4.53127 0.11150 4.33255 0.10843 23.22243 0.58119 0.43193 1 2456633.50 4.52742 0.11063 4.27009 0.10803 22.45961 0.56819 0.43603 1 2456634.50 4.54590 0.11158 4.27209 0.10803 22.07717 0.55825 0.43989 1 2456635.50 4.54654 0.11113 4.28480 0.10835 21.78261 0.55081 0.44352 1 2456636.50 4.64153 0.11249 4.33480 0.10856 21.70508 0.54358 0.44689 1 2456637.50 4.76870 0.11718 4.41419 0.10819 21.79681 0.53423 0.45002 1 2456638.50 4.86193 0.11741 4.47627 0.10909 21.82447 0.53186 0.45288 1 2456639.50 4.90724 0.11764 4.45373 0.10986 21.46690 0.52953 0.45549 1 2456640.50 4.88532 0.11830 4.51448 0.11075 21.53795 0.52836 0.45783 1 2456641.50 4.85857 0.11798 4.51522 0.11073 21.34792 0.52351 0.45990 1 2456642.50 4.81321 0.11753 4.50735 0.11113 21.14489 0.52134 0.46170 1 2456643.50 4.76085 0.11710 4.50430 0.11051 20.99160 0.51504 0.46322 1 2456644.50 4.70644 0.11681 4.54991 0.11189 21.09011 0.51863 0.46447 1 2456645.50 4.65031 0.11612 4.58325 0.11097 21.15586 0.51224 0.46545 1 2456646.50 4.52460 0.11222 4.62281 0.11306 21.27475 0.52030 0.46614 1 2456647.50 4.48109 0.11098 4.64912 0.11333 21.35761 0.52063 0.46656 1 2456648.50 4.41311 0.11000 4.65159 0.11338 21.35630 0.52057 0.46670 1 2456649.50 4.47749 0.10796 4.74107 0.11406 21.78033 0.52399 0.46656 0 2456650.50 4.39047 0.10807 4.83038 0.11549 22.23064 0.53150 0.46614 1 2456651.50 4.36992 0.10822 4.90509 0.11747 22.64234 0.54227 0.46544 1 2456652.50 4.40456 0.10836 4.93417 0.11655 22.87253 0.54025 0.46446 1 2456653.50 4.65994 0.10603 4.94275 0.11773 23.03650 0.54868 0.46321 0 2456654.50 4.73407 0.10871 4.94153 0.11776 23.18365 0.55247 0.46168 0 2456655.50 4.52407 0.10945 4.89432 0.11712 23.14253 0.55378 0.45988 1 2456656.50 4.56012 0.10945 4.89604 0.11711 23.36089 0.55877 0.45780 1 2456657.50 4.55105 0.11043 4.85938 0.11653 23.42504 0.56176 0.45546 1 2456658.50 4.57830 0.11000 4.76623 0.11595 23.24136 0.56542 0.45285 1 2456659.50 4.57944 0.11250 4.69304 0.11450 23.17727 0.56548 0.44998 1 2456660.50 4.66805 0.11149 4.59876 0.11095 23.03059 0.55565 0.44686 1 2456661.50 4.73479 0.11521 4.56752 0.11007 23.22403 0.55968 0.44348 1 2456662.50 4.79244 0.11641 4.52713 0.10948 23.39972 0.56587 0.43985 1 2456663.50 4.86920 0.11608 4.52954 0.10947 23.82922 0.57589 0.43599 1 2456664.50 4.90660 0.11339 4.56332 0.10855 24.46479 0.58195 0.43189 1 2456665.50 4.95629 0.11754 4.54517 0.10868 24.86280 0.59448 0.42756 1 2456666.50 4.96484 0.11529 4.58825 0.10908 25.63988 0.60956 0.42302 1 2456667.50 5.00552 0.11710 4.66118 0.10976 26.64148 0.62734 0.41828 1 2456668.50 5.02855 0.11752 4.66685 0.10979 27.31460 0.64259 0.41335 1 2456669.50 4.97592 0.11670 4.77702 0.10997 28.66426 0.65988 0.40823 1 2456670.50 4.95039 0.11601 4.87124 0.11155 30.00009 0.68700 0.40296 1 2456671.50 4.81909 0.11520 4.81717 0.11328 30.48185 0.71683 0.39753 1 2456672.50 4.72917 0.11313 4.83601 0.11265 31.47342 0.73312 0.39199 1 2456673.50 4.65866 0.10993 4.84255 0.11272 32.44491 0.75524 0.38633 1 2456674.50 4.63412 0.10938 4.78632 0.11145 33.04139 0.76936 0.38060 1 2456675.50 4.61083 0.10909 4.73122 0.11017 33.67699 0.78420 0.37482 1 2456676.50 4.62021 0.10894 4.79312 0.11199 35.19992 0.82245 0.36901 1 2456677.50 4.64232 0.10906 4.79853 0.11198 36.37350 0.84881 0.36321 1 2456678.50 4.71783 0.10959 4.86131 0.11269 38.04452 0.88193 0.35746 1 2456679.50 4.80475 0.11055 4.93338 0.11324 39.86182 0.91500 0.35180 1 2456680.50 4.83468 0.11191 4.92771 0.11331 41.09919 0.94505 0.34626 1 2456681.50 4.93425 0.11286 4.93134 0.11323 42.43319 0.97428 0.34090 1 2456682.50 4.94219 0.11492 4.97998 0.11463 44.17308 1.01674 0.33576 1 2456683.50 4.94472 0.11391 5.06136 0.11627 46.22461 1.06188 0.33090 1 2456684.50 4.86390 0.11179 5.06564 0.11635 47.55950 1.09237 0.32636 1 2456685.50 4.77678 0.11022 5.12023 0.11671 49.32177 1.12421 0.32220 1 2456686.50 4.85005 0.11186 5.20512 0.11713 51.32155 1.15491 0.31847 1 2456687.50 4.90077 0.11294 5.20512 0.11713 52.38650 1.17887 0.31521 1 2456688.50 4.96785 0.11290 5.27122 0.11714 53.98262 1.19968 0.31248 1 2456689.50 4.94710 0.11286 5.27122 0.11714 54.73859 1.21648 0.31032 1 2456690.50 4.98927 0.11450 5.29145 0.11758 55.50809 1.23345 0.30875 1 2456691.50 5.06987 0.11643 5.28372 0.11732 55.76799 1.23832 0.30781 1 2456692.50 5.12023 0.11671 5.28372 0.11732 55.87971 1.24080 0.30750 1 2456693.50 5.20512 0.11713 5.18186 0.11693 54.68327 1.23393 0.30783 1 2456694.50 5.27122 0.11714 5.18186 0.11693 54.33957 1.22618 0.30881 1 2456695.50 5.29145 0.11758 5.04022 0.11514 52.31301 1.19505 0.31040 1 2456696.50 5.28372 0.11732 4.96578 0.11238 50.82081 1.15008 0.31259 1 2456697.50 5.18186 0.11693 4.96578 0.11238 49.93750 1.13009 0.31534 1 2456698.50 5.04022 0.11514 5.01520 0.11491 49.40307 1.13190 0.31862 1 2456699.50 4.96578 0.11238 5.06516 0.11087 48.74083 1.06686 0.32237 1 2456700.50 5.01520 0.11491 5.06516 0.11087 47.50151 1.03973 0.32654 1 2456701.50 5.06516 0.11087 5.00352 0.11310 45.64164 1.03170 0.33110 1 2456702.50 5.00352 0.11310 4.96162 0.11004 43.95506 0.97480 0.33598 1 2456703.50 4.96162 0.11004 4.96162 0.11004 42.63837 0.94560 0.34112 1 2456704.50 4.95902 0.10960 4.95902 0.10960 41.30553 0.91289 0.34649 1 2456705.50 4.92971 0.10944 4.92971 0.10944 39.77882 0.88313 0.35203 1 2456706.50 5.00051 0.11012 4.92971 0.10944 38.52802 0.85536 0.35770 1 2456707.50 4.98214 0.11052 5.00051 0.11012 37.85390 0.83364 0.36346 1 2456708.50 5.01837 0.11146 4.98214 0.11052 36.53967 0.81057 0.36925 1 2456709.50 5.07238 0.11073 5.01837 0.11146 35.67448 0.79238 0.37506 1 2456710.50 5.05579 0.11013 5.01837 0.11146 34.59927 0.76850 0.38084 1 2456711.50 5.04133 0.10966 5.07238 0.11073 33.94267 0.74097 0.38657 1 2456712.50 5.07878 0.11017 5.05579 0.11013 32.86433 0.71586 0.39222 1 2456713.50 5.20284 0.11179 5.04134 0.10966 31.86334 0.69309 0.39777 1 2456714.50 5.35430 0.11537 5.04134 0.10966 31.01300 0.67459 0.40318 1 2456715.50 5.34584 0.11842 5.07878 0.11017 30.44238 0.66035 0.40845 0 2456716.50 5.40621 0.12016 5.20284 0.11179 30.42061 0.65362 0.41356 0 2456717.50 5.41147 0.12100 5.35430 0.11537 30.57332 0.65878 0.41849 0 2456718.50 5.31923 0.11971 5.34584 0.11842 29.84589 0.66115 0.42322 0 2456719.50 5.28082 0.11823 5.40621 0.12016 29.54706 0.65674 0.42775 0 2456720.50 5.26064 0.11797 5.40621 0.12016 28.95994 0.64369 0.43206 0 2456721.50 5.25709 0.11878 5.41147 0.12100 28.44708 0.63610 0.43615 0 2456722.50 5.29397 0.11909 5.31923 0.11971 27.47426 0.61831 0.44001 0 2456723.50 5.22571 0.11897 5.28082 0.11823 26.83308 0.60073 0.44362 0 2456724.50 5.16920 0.11644 5.26064 0.11797 26.32916 0.59043 0.44699 0 2456725.50 5.03751 0.11568 5.25709 0.11878 25.94838 0.58627 0.45011 0 2456726.50 4.94344 0.11507 5.25709 0.11878 25.62193 0.57889 0.45297 0 2456727.50 4.94411 0.11465 5.29397 0.11909 25.50841 0.57383 0.45556 0 2456728.50 4.93781 0.11516 5.22571 0.11897 24.92378 0.56744 0.45789 0 2456729.50 4.93261 0.11379 5.16920 0.11644 24.43362 0.55041 0.45996 0 2456730.50 4.96595 0.11282 5.03751 0.11568 23.62679 0.54257 0.46175 0 2456731.50 4.98093 0.11478 4.94344 0.11507 23.03392 0.53618 0.46327 0 2456732.50 4.93420 0.11433 4.94411 0.11465 22.91400 0.53136 0.46451 0 2456733.50 4.93751 0.11468 4.93781 0.11516 22.78997 0.53150 0.46547 0 2456734.50 4.98772 0.11474 4.93781 0.11516 22.72280 0.52993 0.46616 0 2456735.50 5.02228 0.11491 4.93261 0.11379 22.65912 0.52272 0.46657 0 2456736.50 5.07825 0.11710 4.96595 0.11282 22.79960 0.51797 0.46670 0 2456737.50 5.15935 0.11830 4.98093 0.11478 22.88309 0.52730 0.46655 0 2456738.50 5.19507 0.11678 4.93420 0.11433 22.71015 0.52621 0.46612 0 2456739.50 5.24272 0.11902 4.93751 0.11468 22.79451 0.52942 0.46541 0 2456740.50 5.29318 0.11916 4.98772 0.11474 23.12418 0.53198 0.46443 0 2456741.50 5.26627 0.11661 4.98772 0.11474 23.25040 0.53488 0.46317 0 2456742.50 5.29691 0.11810 5.02228 0.11491 23.56771 0.53925 0.46163 0 2456743.50 5.33771 0.11793 5.07825 0.11710 24.01842 0.55382 0.45982 0 2456744.50 5.28009 0.11737 5.15935 0.11830 24.62452 0.56461 0.45773 0 2456745.50 5.24039 0.11787 5.19637 0.11681 25.05791 0.56330 0.45538 0 2456746.50 5.20840 0.11643 5.24535 0.11906 25.58719 0.58077 0.45277 0 2456747.50 5.14118 0.11549 5.29567 0.11923 26.16411 0.58907 0.44989 0 2456748.50 5.13250 0.11541 5.29662 0.11925 26.53731 0.59749 0.44676 0 2456749.50 5.09409 0.11533 5.27055 0.11685 26.81165 0.59441 0.44337 0 2456750.50 5.11819 0.11639 5.29698 0.11823 27.39322 0.61143 0.43974 0 2456751.50 5.10192 0.11557 5.32024 0.11776 28.00466 0.61989 0.43586 0 2456752.50 5.11507 0.11751 5.25435 0.11703 28.18637 0.62780 0.43176 0 2456753.50 5.08430 0.11608 5.20823 0.11720 28.50795 0.64150 0.42743 0 2456754.50 5.05188 0.11591 5.20405 0.11711 29.10065 0.65488 0.42288 0 2456755.50 5.04228 0.11576 5.16324 0.11566 29.53203 0.66154 0.41813 0 2456756.50 4.93732 0.11458 5.09421 0.11481 29.83814 0.67245 0.41319 0 2456757.50 4.86980 0.11308 5.08517 0.11472 30.53714 0.68891 0.40807 0 2456758.50 4.86288 0.11242 5.04819 0.11470 31.11522 0.70697 0.40279 0 2456759.50 4.84796 0.11259 5.06154 0.11536 32.05531 0.73061 0.39737 0 2456760.50 4.83909 0.11103 5.05664 0.11528 32.93820 0.75089 0.39182 0 2456761.50 4.87536 0.11273 5.03726 0.11450 33.78005 0.76785 0.38616 0 2456762.50 5.01757 0.11545 5.03166 0.11580 34.76732 0.80012 0.38043 0 2456763.50 5.17733 0.11926 5.01213 0.11513 35.71040 0.82025 0.37464 0 2456764.50 5.30584 0.12131 5.00679 0.11505 36.80456 0.84576 0.36883 0 2456765.50 5.36339 0.12127 4.97582 0.11509 37.75423 0.87326 0.36304 0 2456766.50 5.38260 0.12096 4.95470 0.11470 38.81345 0.89853 0.35729 0 2456767.50 5.37575 0.12148 4.86434 0.11365 39.34243 0.91919 0.35163 0 2456768.50 5.34639 0.12105 4.85951 0.11359 40.56952 0.94829 0.34610 0 2456769.50 5.29801 0.12010 4.81297 0.11179 41.45372 0.96286 0.34074 0 2456770.50 5.11360 0.11581 4.84341 0.11232 43.00100 0.99720 0.33561 0 2456771.50 4.99616 0.11363 4.84221 0.11231 44.26171 1.02663 0.33076 0 2456772.50 4.93041 0.11140 4.86601 0.11296 45.72255 1.06144 0.32623 0 2456773.50 4.86411 0.11056 4.91119 0.11274 47.34366 1.08685 0.32208 0 2456774.50 4.81842 0.11081 4.91529 0.11284 48.49643 1.11335 0.31836 0 2456775.50 4.83750 0.11109 4.96111 0.11403 49.95969 1.14828 0.31512 0 2456776.50 4.83310 0.11176 4.96570 0.11410 50.87816 1.16902 0.31241 0 2456777.50 4.82288 0.11106 5.09056 0.11685 52.88190 1.21391 0.31026 0 2456778.50 4.81542 0.11083 5.19023 0.11892 54.45984 1.24783 0.30871 0 2456779.50 4.77267 0.11048 5.19085 0.11891 54.79459 1.25518 0.30779 0 2456780.50 4.80912 0.11243 5.23214 0.11931 55.33396 1.26175 0.30750 0 2456781.50 4.79995 0.11321 5.22890 0.11922 55.17239 1.25791 0.30785 0 2456782.50 4.77114 0.11248 5.28384 0.11855 55.39474 1.24287 0.30884 0 2456783.50 4.72575 0.11189 5.26534 0.11904 54.62898 1.23508 0.31046 0 2456784.50 4.72465 0.10979 5.26091 0.11897 53.81500 1.21696 0.31266 0 2456785.50 4.81609 0.11218 5.16918 0.11644 51.95238 1.17030 0.31543 0 2456786.50 4.88649 0.11339 5.16222 0.11627 50.81682 1.14459 0.31872 0 2456787.50 4.98454 0.11449 5.12384 0.11627 49.26817 1.11798 0.32249 0 2456788.50 5.03048 0.11508 4.98507 0.11444 46.71199 1.07238 0.32668 0 2456789.50 5.13672 0.11775 4.97628 0.11429 45.35340 1.04158 0.33124 0 2456790.50 5.19739 0.11874 4.86456 0.11256 43.05571 0.99629 0.33613 0 2456791.50 5.20131 0.11847 4.85591 0.11137 41.69043 0.95614 0.34129 0 2456792.50 5.25966 0.11773 4.85591 0.11137 40.40763 0.92672 0.34666 0 2456793.50 5.23556 0.11855 4.74875 0.11021 38.28120 0.88844 0.35221 0 2456794.50 5.13476 0.11560 4.73328 0.10997 36.95657 0.85866 0.35788 0 2456795.50 5.10296 0.11582 4.69731 0.10961 35.52403 0.82896 0.36363 0 2456796.50 4.96564 0.11409 4.69731 0.10961 34.41752 0.80314 0.36943 0 2456797.50 4.86295 0.11254 4.76582 0.11195 33.84703 0.79508 0.37524 0 2456798.50 4.85591 0.11137 4.69737 0.11142 32.35613 0.76747 0.38102 0 2456799.50 4.74875 0.11021 4.66954 0.11168 31.21887 0.74662 0.38675 0 2456800.50 4.73328 0.10997 4.66954 0.11168 30.32703 0.72529 0.39239 0 2456801.50 4.69731 0.10961 4.61554 0.11154 29.14749 0.70441 0.39793 0 2456802.50 4.76582 0.11195 4.58728 0.11084 28.19685 0.68131 0.40335 0 2456803.50 4.69737 0.11142 4.59743 0.10986 27.53568 0.65796 0.40861 0 2456804.50 4.66954 0.11168 4.56660 0.10871 26.68074 0.63516 0.41371 0 2456805.50 4.61554 0.11154 4.56660 0.10871 26.05711 0.62031 0.41863 0 2456806.50 4.58728 0.11084 4.53113 0.10832 25.28038 0.60434 0.42336 0 2456807.50 4.59743 0.10986 4.52458 0.10818 24.71297 0.59087 0.42788 0 2456808.50 4.56660 0.10871 4.55394 0.10948 24.38000 0.58612 0.43219 0 2456809.50 4.53113 0.10832 4.63890 0.11116 24.37223 0.58400 0.43627 0 2456810.50 4.52458 0.10818 4.69560 0.11185 24.24053 0.57739 0.44012 0 2456811.50 4.55394 0.10948 4.69560 0.11185 23.84793 0.56804 0.44373 0 2456812.50 4.63890 0.11116 4.75658 0.11290 23.79581 0.56483 0.44709 0 2456813.50 4.69560 0.11185 4.84227 0.11497 23.89118 0.56723 0.45020 0 2456814.50 4.75658 0.11290 4.95029 0.11667 24.11775 0.56844 0.45305 0 2456815.50 4.84227 0.11497 4.98735 0.11637 24.02304 0.56054 0.45564 0 2456816.50 4.95029 0.11667 5.08130 0.11888 24.22791 0.56684 0.45796 0 2456817.50 4.98736 0.11637 5.08130 0.11888 24.01201 0.56178 0.46002 0 2456818.50 5.08130 0.11888 5.11158 0.11951 23.96894 0.56041 0.46180 0 2456819.50 5.11158 0.11951 5.15800 0.12134 24.02930 0.56528 0.46331 0 2456820.50 5.15800 0.12134 5.17672 0.12216 23.98856 0.56608 0.46454 0 2456821.50 5.17672 0.12216 5.07231 0.11903 23.40821 0.54930 0.46550 0 2456822.50 5.07231 0.11903 4.95585 0.11643 22.80420 0.53576 0.46618 0 2456823.50 4.95586 0.11643 4.85120 0.11431 22.28437 0.52509 0.46658 0 2456824.50 4.85120 0.11431 4.73958 0.11222 21.76033 0.51523 0.46670 0 2456825.50 4.73958 0.11222 4.73958 0.11222 21.77510 0.51558 0.46654 0 2456826.50 4.73328 0.11223 4.73328 0.11223 21.78701 0.51658 0.46610 0 2456827.50 4.75138 0.11202 4.75138 0.11202 21.93771 0.51720 0.46539 0 2456828.50 4.66636 0.11024 4.66636 0.11024 21.63751 0.51116 0.46439 0 2456829.50 4.59333 0.10980 4.59333 0.10980 21.41592 0.51194 0.46312 0 2456830.50 4.53168 0.10880 4.53168 0.10880 21.27024 0.51066 0.46158 0 2456831.50 4.46825 0.10828 4.46825 0.10828 21.13884 0.51226 0.45976 0 2456832.50 4.38764 0.10809 4.46825 0.10828 21.33239 0.51695 0.45767 0 2456833.50 4.33803 0.10709 4.38764 0.10809 21.16511 0.52143 0.45531 0 2456834.50 4.31185 0.10660 4.33803 0.10709 21.16911 0.52259 0.45268 0 2456835.50 4.33510 0.10752 4.31185 0.10660 21.31217 0.52688 0.44980 0 2456836.50 4.35748 0.10753 4.33510 0.10752 21.72959 0.53896 0.44666 0 2456837.50 4.41706 0.10770 4.35748 0.10753 22.17759 0.54728 0.44326 0 2456838.50 4.59731 0.10919 4.41706 0.10770 22.85468 0.55726 0.43962 0 2456839.50 4.77248 0.11628 4.41706 0.10770 23.26356 0.56723 0.43574 0 2456840.50 5.00797 0.11881 4.59731 0.10919 24.67655 0.58606 0.43163 0 2456841.50 5.16112 0.12073 4.77248 0.11628 26.13948 0.63688 0.42729 0 2456842.50 5.31244 0.12320 5.00797 0.11881 28.02307 0.66482 0.42274 0 2456843.50 5.52903 0.12173 5.16112 0.12073 29.54090 0.69105 0.41798 0 2456844.50 5.58145 0.12759 5.16112 0.12073 30.25268 0.70770 0.41304 0 2456845.50 5.61918 0.12757 5.31244 0.12320 31.92689 0.74040 0.40791 0 2456846.50 5.53698 0.12697 5.52903 0.12173 34.10671 0.75089 0.40263 0 2456847.50 5.48689 0.12326 5.58145 0.12759 35.37791 0.80871 0.39720 0 2456848.50 5.48413 0.12465 5.61918 0.12757 36.63467 0.83168 0.39164 0 2456849.50 5.33911 0.12196 5.61918 0.12757 37.71654 0.85624 0.38599 0 2456850.50 5.18131 0.11964 5.53698 0.12697 38.29451 0.87814 0.38025 0 2456851.50 4.98662 0.11723 5.48689 0.12326 39.13005 0.87906 0.37446 0 2456852.50 4.84631 0.11359 5.48413 0.12465 40.35245 0.91718 0.36865 0 2456853.50 4.74441 0.11120 5.48413 0.12465 41.65171 0.94671 0.36286 0 2456854.50 4.57969 0.10986 5.33911 0.12196 41.86578 0.95630 0.35711 0 2456855.50 4.44232 0.10733 5.18131 0.11964 41.94696 0.96856 0.35145 0 2456856.50 4.32390 0.10585 4.98662 0.11723 41.67090 0.97966 0.34593 0 2456857.50 4.29638 0.10604 4.98662 0.11723 42.98997 1.01067 0.34058 0 2456858.50 4.23466 0.10509 4.84631 0.11359 43.06604 1.00943 0.33546 0 2456859.50 4.17974 0.10400 4.74441 0.11120 43.40548 1.01730 0.33061 0 2456860.50 4.12016 0.10252 4.74441 0.11120 44.61637 1.04568 0.32609 0 2456861.50 4.14671 0.10461 4.57898 0.10984 44.17430 1.05964 0.32196 0 2456862.50 4.20292 0.10566 4.44299 0.10732 43.86589 1.05961 0.31825 0 2456863.50 4.26427 0.10602 4.44351 0.10732 44.77319 1.08138 0.31503 0 2456864.50 4.36531 0.10804 4.33291 0.10601 44.41579 1.08671 0.31234 0 2456865.50 4.50911 0.10940 4.33574 0.10606 45.05708 1.10222 0.31021 0 2456866.50 4.67805 0.11242 4.31528 0.10619 45.29029 1.11450 0.30868 0 2456867.50 4.83316 0.11524 4.27023 0.10568 45.08186 1.11568 0.30777 0 2456868.50 4.99959 0.11785 4.27610 0.10578 45.22274 1.11866 0.30750 0 2456869.50 5.17323 0.12135 4.24164 0.10510 44.74930 1.10884 0.30787 0 2456870.50 5.28590 0.12202 4.24928 0.10524 44.53704 1.10302 0.30889 0 2456871.50 5.42407 0.12486 4.22598 0.10458 43.82882 1.08465 0.31052 0 2456872.50 5.44566 0.12410 4.26234 0.10636 43.57903 1.08747 0.31274 0 2456873.50 5.41471 0.12443 4.27234 0.10651 42.91338 1.06988 0.31553 0 2456874.50 5.34321 0.12284 4.32452 0.10745 42.54156 1.05704 0.31883 0 2456875.50 5.26877 0.12131 4.33307 0.10758 41.63291 1.03363 0.32261 0 2456876.50 5.12987 0.12006 4.40609 0.10815 41.25269 1.01255 0.32681 0 2456877.50 5.01653 0.11723 4.50939 0.11042 41.06222 1.00546 0.33139 0 2456878.50 4.82557 0.11388 4.51702 0.11054 39.94300 0.97751 0.33628 0 2456879.50 4.66294 0.11050 4.63443 0.11138 39.75123 0.95538 0.34145 0 2456880.50 4.54514 0.10867 4.75542 0.11355 39.53310 0.94398 0.34683 0 2456881.50 4.50373 0.10815 4.75859 0.11360 38.32300 0.91485 0.35238 0 2456882.50 4.46012 0.10725 4.90240 0.11672 38.23956 0.91042 0.35805 0 2456883.50 4.41730 0.10755 4.96513 0.11580 37.51283 0.87488 0.36381 0 2456884.50 4.41651 0.10700 5.03492 0.11618 36.85567 0.85043 0.36961 0 2456885.50 4.42348 0.10821 5.03074 0.11602 35.69471 0.82322 0.37542 0 2456886.50 4.42678 0.10840 5.11794 0.11701 35.22042 0.80522 0.38120 0 2456887.50 4.45920 0.10913 5.14384 0.11789 34.35888 0.78747 0.38692 0 2456888.50 4.48452 0.10972 5.13074 0.11714 33.29325 0.76009 0.39257 0 2456889.50 4.50630 0.11012 5.12344 0.11697 32.32764 0.73808 0.39810 0 2456890.50 4.57504 0.11068 5.10706 0.11730 31.36635 0.72043 0.40351 0 2456891.50 4.66373 0.11296 5.04230 0.11598 30.17668 0.69408 0.40877 0 2456892.50 4.74423 0.11312 4.99620 0.11545 29.16902 0.67401 0.41387 0 2456893.50 4.81701 0.11445 4.92816 0.11314 28.10028 0.64512 0.41878 0 2456894.50 4.94827 0.11770 4.78740 0.11377 26.69233 0.63434 0.42350 0 2456895.50 4.94423 0.11455 4.78356 0.11371 26.11096 0.62071 0.42802 0 2456896.50 4.95806 0.11330 4.76399 0.11335 25.48934 0.60646 0.43232 0 2456897.50 5.03922 0.11466 4.74552 0.11145 24.91849 0.58519 0.43640 0 2456898.50 5.02307 0.11489 4.82453 0.11326 24.89321 0.58437 0.44024 0 2456899.50 5.00589 0.11438 4.90900 0.11435 24.91974 0.58050 0.44384 0 2456900.50 5.00381 0.11491 4.91165 0.11457 24.56071 0.57292 0.44719 0 2456901.50 4.94943 0.11386 4.91759 0.11467 24.25298 0.56553 0.45029 0 2456902.50 4.91891 0.11378 4.93272 0.11480 24.02334 0.55909 0.45313 0 2456903.50 4.87567 0.11134 4.97809 0.11617 23.97049 0.55937 0.45571 0 2456904.50 4.73278 0.11295 4.96839 0.11563 23.68262 0.55115 0.45803 1 2456905.50 4.75175 0.11324 4.96117 0.11611 23.43831 0.54853 0.46008 1 2456906.50 4.76043 0.11162 4.95225 0.11651 23.21674 0.54619 0.46185 0 2456907.50 4.87022 0.11401 4.87546 0.11458 22.70891 0.53368 0.46335 0 2456908.50 4.96870 0.11527 4.87973 0.11463 22.60906 0.53112 0.46458 0 2456909.50 4.97121 0.11554 4.83200 0.11390 22.29680 0.52557 0.46552 0 2456910.50 4.98589 0.11554 4.79174 0.11362 22.04748 0.52279 0.46619 0 2456911.50 5.02846 0.11699 4.75658 0.11271 21.84898 0.51771 0.46659 0 2456912.50 5.01023 0.11620 4.77395 0.11217 21.91821 0.51502 0.46670 0 2456913.50 4.99555 0.11660 4.81915 0.11267 22.14157 0.51765 0.46653 0 2456914.50 4.97806 0.11689 4.78545 0.11170 22.02884 0.51417 0.46609 0 2456915.50 4.89139 0.11478 4.78545 0.11170 22.09751 0.51577 0.46536 0 2456916.50 4.83805 0.11397 4.82808 0.11401 22.39075 0.52875 0.46436 0 2456917.50 4.79346 0.11365 4.82087 0.11237 22.48097 0.52399 0.46308 0 2456918.50 4.75658 0.11271 4.91163 0.11447 23.05879 0.53742 0.46152 0 2456919.50 4.77395 0.11217 4.91292 0.11365 23.24858 0.53779 0.45970 0 2456920.50 4.81915 0.11267 4.98680 0.11641 23.81517 0.55591 0.45760 0 2456921.50 4.78545 0.11170 5.06620 0.11734 24.44656 0.56624 0.45523 0 2456922.50 4.82808 0.11401 5.06620 0.11734 24.73171 0.57284 0.45260 0 2456923.50 4.82086 0.11237 5.13666 0.11748 25.39936 0.58089 0.44971 0 2456924.50 4.91163 0.11447 5.10834 0.11674 25.61695 0.58542 0.44656 0 2456925.50 4.91292 0.11365 5.10656 0.11658 26.00273 0.59364 0.44315 0 2456926.50 4.98680 0.11641 5.10656 0.11699 26.43620 0.60565 0.43951 0 2456927.50 5.06620 0.11734 5.04919 0.11546 26.60784 0.60844 0.43562 0 2456928.50 5.13666 0.11748 5.03335 0.11476 27.03329 0.61634 0.43150 0 2456929.50 5.10834 0.11674 5.03335 0.11476 27.58589 0.62894 0.42715 0 2456930.50 5.10656 0.11658 5.05207 0.11503 28.28894 0.64408 0.42260 0 2456931.50 5.10656 0.11699 5.12681 0.11595 29.36541 0.66411 0.41784 0 2456932.50 5.04919 0.11546 5.16675 0.11692 30.30833 0.68588 0.41288 0 2456933.50 5.03335 0.11476 5.14057 0.11562 30.91816 0.69538 0.40775 0 2456934.50 5.05207 0.11503 5.14057 0.11562 31.73637 0.71379 0.40246 0 2456935.50 5.12681 0.11595 5.07415 0.11596 32.18972 0.73563 0.39703 0 2456936.50 5.16675 0.11692 5.03384 0.11521 32.84732 0.75178 0.39147 0 2456937.50 5.14057 0.11562 4.94845 0.11326 33.24464 0.76089 0.38581 0 2456938.50 5.07415 0.11596 4.86441 0.11137 33.67426 0.77099 0.38007 0 2456939.50 5.03384 0.11521 4.86441 0.11137 34.72384 0.79502 0.37428 0 2456940.50 4.94845 0.11326 4.77701 0.11050 35.18338 0.81384 0.36848 0 2456941.50 4.86441 0.11137 4.68844 0.10987 35.64327 0.83526 0.36268 0 2456942.50 4.77701 0.11050 4.68031 0.10917 36.73587 0.85684 0.35694 0 2456943.50 4.68844 0.10987 4.68031 0.10917 37.92798 0.88465 0.35128 0 2456944.50 4.68031 0.10917 4.70019 0.10962 39.31522 0.91692 0.34576 0 2456945.50 4.70019 0.10962 4.71236 0.10947 40.66389 0.94468 0.34042 0 2456946.50 4.71236 0.10947 4.71236 0.10947 41.91392 0.97372 0.33531 0 2456947.50 4.74288 0.11110 4.74288 0.11110 43.42922 1.01735 0.33047 0 2456948.50 4.80667 0.11176 4.80667 0.11176 45.23874 1.05185 0.32596 0 2456949.50 4.90307 0.11366 4.80667 0.11176 46.40553 1.07898 0.32184 0 2456950.50 5.04889 0.11730 4.90307 0.11366 48.44062 1.12291 0.31815 0 2456951.50 5.11745 0.11834 5.04889 0.11730 50.90237 1.18260 0.31494 0 2456952.50 5.13702 0.11804 5.04889 0.11730 51.77963 1.20298 0.31226 0 2456953.50 5.26009 0.12136 5.11745 0.11834 53.19989 1.23020 0.31015 0 2456954.50 5.20437 0.12114 5.11745 0.11834 53.72222 1.24228 0.30864 0 2456955.50 5.33538 0.12479 5.13702 0.11804 54.23912 1.24633 0.30775 0 2456956.50 5.26149 0.12049 5.26009 0.12136 55.62837 1.28344 0.30750 0 2456957.50 5.20125 0.12159 5.26009 0.12136 55.48616 1.28016 0.30790 0 2456958.50 5.11672 0.11786 5.20437 0.12114 54.53295 1.26936 0.30893 0 2456959.50 4.99304 0.11620 5.20437 0.12114 53.95523 1.25592 0.31058 0 2456960.50 4.85524 0.11171 5.33538 0.12479 54.52311 1.27523 0.31282 0 2456961.50 4.86013 0.11173 5.26149 0.12049 52.81752 1.20956 0.31562 0 2456962.50 4.86074 0.11012 5.26149 0.12049 51.72347 1.18450 0.31894 0 2456963.50 4.91549 0.11105 5.20125 0.12159 49.93655 1.16736 0.32273 0 2456964.50 4.88925 0.11125 5.11672 0.11786 47.86655 1.10255 0.32695 0 2456965.50 4.82417 0.11055 5.11672 0.11786 46.55159 1.07226 0.33153 0 2456966.50 4.80576 0.11145 4.99392 0.11618 44.11956 1.02643 0.33644 0 2456967.50 4.84038 0.11178 4.86227 0.11180 41.66593 0.95800 0.34161 0 2456968.50 4.85799 0.11225 4.86681 0.11185 40.42004 0.92893 0.34700 0 2456969.50 4.90735 0.11254 4.87680 0.11193 39.23660 0.90057 0.35255 0 2456970.50 4.83035 0.11252 4.89741 0.11081 38.16321 0.86351 0.35823 0 2456971.50 4.80233 0.11293 4.90474 0.11095 37.02048 0.83745 0.36399 0 2456972.50 4.77138 0.11134 4.96647 0.11211 36.31963 0.81984 0.36979 0 2456973.50 4.76490 0.11172 4.95811 0.11242 35.14611 0.79688 0.37559 0 2456974.50 4.85340 0.11425 4.90018 0.11220 33.69061 0.77142 0.38137 0 2456975.50 4.97060 0.11793 4.90755 0.11236 32.75098 0.74985 0.38710 0 2456976.50 5.11623 0.11800 4.87874 0.11270 31.63040 0.73068 0.39274 0 2456977.50 5.24498 0.11819 4.90373 0.11282 30.91530 0.71128 0.39827 0 2456978.50 5.32144 0.11875 4.90985 0.11299 30.13074 0.69340 0.40367 0 2456979.50 5.33263 0.11799 4.92500 0.11323 29.45184 0.67713 0.40893 0 2456980.50 5.33899 0.11937 4.92598 0.11327 28.73777 0.66080 0.41402 0 2456981.50 5.34633 0.11891 4.85823 0.11295 27.68205 0.64358 0.41893 0 2456982.50 5.35979 0.11876 4.82157 0.11275 26.86486 0.62824 0.42364 1 2456983.50 5.30151 0.12102 4.78668 0.11139 26.11151 0.60762 0.42816 1 2456984.50 5.24193 0.12087 4.79162 0.11173 25.62195 0.59742 0.43245 1 2456985.50 5.03586 0.11654 4.86217 0.11423 25.51684 0.59950 0.43652 0 2456986.50 5.06693 0.11515 4.86248 0.11423 25.07601 0.58910 0.44035 0 2456987.50 5.04901 0.11395 4.97369 0.11656 25.23603 0.59140 0.44394 0 2456988.50 5.06271 0.11416 5.10738 0.11755 25.52813 0.58755 0.44729 0 2456989.50 5.21360 0.11680 5.24095 0.11843 25.83728 0.58386 0.45038 0 2456990.50 5.26804 0.11836 5.33158 0.11951 25.95632 0.58182 0.45322 0 2456991.50 5.30975 0.11838 5.36730 0.11990 25.83611 0.57718 0.45579 0 2456992.50 5.24143 0.11963 5.36819 0.11995 25.58088 0.57162 0.45810 0 2456993.50 5.14241 0.11722 5.38919 0.12016 25.45398 0.56754 0.46013 0 2456994.50 5.11213 0.11625 5.40597 0.12069 25.33837 0.56566 0.46190 0 2456995.50 5.06638 0.11522 5.46090 0.12209 25.43123 0.56859 0.46339 0 2456996.50 4.97420 0.11515 5.42989 0.12325 25.15451 0.57097 0.46461 0 2456997.50 4.92558 0.11399 5.38743 0.12285 24.85713 0.56681 0.46555 0 2456998.50 4.86509 0.11235 5.26346 0.12104 24.21624 0.55687 0.46621 0 2456999.50 4.81921 0.11148 5.18880 0.11794 23.83356 0.54174 0.46659 0 2457000.50 4.84521 0.11173 5.19126 0.11800 23.83426 0.54176 0.46670 0 2457001.50 4.87879 0.11420 5.13181 0.11656 23.57904 0.53554 0.46652 0 2457002.50 4.97898 0.11421 5.07767 0.11532 23.37583 0.53087 0.46607 0 2457003.50 5.09299 0.11683 5.10959 0.11544 23.59698 0.53311 0.46533 0 2457004.50 5.23470 0.11882 5.10789 0.11600 23.69194 0.53803 0.46432 0 2457005.50 5.34657 0.12063 5.10973 0.11536 23.83250 0.53804 0.46304 0 2457006.50 5.41630 0.12261 5.04030 0.11575 23.66819 0.54352 0.46147 0 2457007.50 5.45422 0.12118 5.03660 0.11567 23.84011 0.54753 0.45964 0 2457008.50 5.48004 0.12288 4.97180 0.11534 23.75062 0.55100 0.45753 0 2457009.50 5.58132 0.12607 4.92398 0.11419 23.76834 0.55122 0.45515 0 2457010.50 5.57661 0.12581 4.89090 0.11278 23.88492 0.55079 0.45251 0 2457011.50 5.54707 0.12502 4.85426 0.11311 24.01288 0.55954 0.44961 0 2457012.50 5.50328 0.12577 4.81564 0.11213 24.16002 0.56254 0.44646 0 2457013.50 5.31214 0.12077 4.81384 0.11233 24.52416 0.57227 0.44305 0 2457014.50 5.20914 0.11899 4.81289 0.11233 24.92901 0.58183 0.43939 0 2457015.50 5.09109 0.11635 4.82020 0.11348 25.41543 0.59835 0.43550 0 2457016.50 5.02002 0.11426 4.81919 0.11332 25.89866 0.60901 0.43137 0 2457017.50 4.97549 0.11405 4.84055 0.11423 26.54619 0.62645 0.42702 0 2457018.50 4.95108 0.11296 4.93018 0.11456 27.62510 0.64191 0.42245 0 2457019.50 4.88735 0.11279 4.98033 0.11564 28.54678 0.66284 0.41769 0 2457020.50 4.85279 0.11403 4.97812 0.11562 29.22367 0.67872 0.41273 0 2457021.50 4.79848 0.11282 5.11308 0.11735 30.77696 0.70634 0.40759 0 2457022.50 4.77909 0.11124 5.25968 0.11973 32.49825 0.73981 0.40230 0 2457023.50 4.78135 0.11187 5.33751 0.11990 33.88921 0.76129 0.39686 0 2457024.50 4.75199 0.11104 5.39584 0.12050 35.24044 0.78699 0.39130 0 2457025.50 4.78563 0.11232 5.39459 0.12049 36.27472 0.81018 0.38564 0 2457026.50 4.82068 0.11447 5.37905 0.11808 37.27156 0.81820 0.37990 0 2457027.50 4.80704 0.11407 5.33373 0.11960 38.11022 0.85454 0.37411 0 2457028.50 4.82374 0.11424 5.34962 0.11793 39.43886 0.86941 0.36830 0 2457029.50 4.91004 0.11470 5.34439 0.11775 40.66971 0.89604 0.36250 0 2457030.50 4.93689 0.11518 5.28994 0.11674 41.56157 0.91720 0.35676 0 2457031.50 5.07268 0.11686 5.21830 0.11277 42.32904 0.91472 0.35111 0 2457032.50 5.23311 0.11946 5.10036 0.11469 42.70369 0.96024 0.34560 0 2457033.50 5.31550 0.11914 5.09514 0.11454 44.00844 0.98929 0.34026 0 2457034.50 5.38107 0.12033 5.00203 0.11232 44.53096 0.99993 0.33515 0 2457035.50 5.35881 0.11712 4.89243 0.11163 44.83746 1.02305 0.33033 0 2457036.50 5.29055 0.11847 4.89243 0.11163 46.08323 1.05147 0.32583 0 2457037.50 5.31593 0.11676 4.76392 0.10986 46.02702 1.06138 0.32172 0 2457038.50 5.26504 0.11594 4.70526 0.10859 46.51728 1.07359 0.31804 0 2457039.50 5.19801 0.11184 4.70526 0.10859 47.46519 1.09546 0.31485 0 2457040.50 5.09066 0.11441 4.68202 0.10928 48.03976 1.12124 0.31219 0 2457041.50 5.00203 0.11232 4.68202 0.10928 48.69064 1.13643 0.31009 0 2457042.50 4.89243 0.11163 4.63890 0.10906 48.71001 1.14517 0.30860 0 2457043.50 4.76392 0.10986 4.62434 0.10899 48.83144 1.15095 0.30773 0 2457044.50 4.70526 0.10859 4.62434 0.10899 48.90423 1.15266 0.30750 0 2457045.50 4.68202 0.10928 4.64171 0.10973 48.95620 1.15733 0.30792 0 2457046.50 4.63890 0.10906 4.64171 0.10973 48.62426 1.14948 0.30897 0 2457047.50 4.62434 0.10899 4.70594 0.11173 48.76898 1.15794 0.31064 0 2457048.50 4.64171 0.10973 4.78417 0.11304 48.86586 1.15455 0.31290 0 2457049.50 4.70594 0.11173 4.78417 0.11304 47.99718 1.13403 0.31572 0 2457050.50 4.78417 0.11304 4.90582 0.11580 48.19393 1.13761 0.31905 0 2457051.50 4.90582 0.11580 5.00295 0.11844 47.99610 1.13622 0.32286 0 2457052.50 5.00295 0.11844 5.00295 0.11844 46.76357 1.10704 0.32708 0 2457053.50 5.07378 0.11878 5.07378 0.11878 46.12037 1.07968 0.33168 0 2457054.50 5.12155 0.11801 5.12155 0.11801 45.20551 1.04160 0.33659 0 2457055.50 5.14565 0.11672 5.12155 0.11801 43.84615 1.01028 0.34177 0 2457056.50 5.17648 0.11715 5.14565 0.11672 42.69449 0.96846 0.34716 0 2457057.50 5.27042 0.11824 5.17648 0.11715 41.60699 0.94165 0.35272 0 2457058.50 5.33954 0.11968 5.17648 0.11715 40.29836 0.91203 0.35840 0 2457059.50 5.38823 0.11985 5.27042 0.11824 39.74190 0.89163 0.36417 0 2457060.50 5.38841 0.11910 5.33954 0.11968 39.01028 0.87440 0.36997 0 2457061.50 5.39710 0.12062 5.38823 0.11985 38.15890 0.84875 0.37577 0 2457062.50 5.42254 0.12094 5.38823 0.11985 37.01191 0.82324 0.38155 0 2457063.50 5.40437 0.11902 5.38841 0.11910 35.92773 0.79410 0.38727 0 2457064.50 5.36927 0.11964 5.39710 0.12062 34.96054 0.78135 0.39291 0 2457065.50 5.33043 0.11910 5.42254 0.12094 34.15733 0.76185 0.39844 0 2457066.50 5.30981 0.11863 5.42254 0.12094 33.25007 0.74161 0.40384 0 2457067.50 5.19201 0.11675 5.40437 0.11902 32.29345 0.71120 0.40909 0 2457068.50 5.03629 0.11475 5.36927 0.11964 31.30068 0.69748 0.41417 0 2457069.50 4.92974 0.11336 5.33043 0.11910 30.35121 0.67814 0.41908 0 2457070.50 4.85371 0.11207 5.30981 0.11863 29.56553 0.66052 0.42379 0 2457071.50 4.76251 0.11003 5.19201 0.11675 28.30477 0.63646 0.42829 0 2457072.50 4.74814 0.11089 5.19201 0.11675 27.74651 0.62390 0.43258 0 2457073.50 4.71713 0.11048 5.03629 0.11475 26.41597 0.60188 0.43664 0 2457074.50 4.66618 0.10975 4.92974 0.11336 25.40974 0.58429 0.44047 0 2457075.50 4.65841 0.10859 4.85371 0.11207 24.61548 0.56836 0.44405 0 2457076.50 4.64465 0.10760 4.76251 0.11003 23.79393 0.54973 0.44739 0 2457077.50 4.72851 0.10963 4.74814 0.11089 23.39836 0.54647 0.45047 0 2457078.50 4.78313 0.11020 4.74814 0.11089 23.10747 0.53968 0.45330 0 2457079.50 4.81548 0.11114 4.71713 0.11048 22.69902 0.53163 0.45586 0 2457080.50 4.85218 0.11287 4.66618 0.10975 22.22914 0.52284 0.45816 0 2457081.50 4.90399 0.11428 4.65841 0.10859 21.99684 0.51275 0.46019 0 2457082.50 4.97261 0.11459 4.64465 0.10760 21.76526 0.50423 0.46195 0 2457083.50 4.94056 0.11296 4.72851 0.10963 22.01654 0.51043 0.46343 0 2457084.50 5.00846 0.11420 4.78313 0.11020 22.15517 0.51046 0.46464 0 2457085.50 5.04253 0.11548 4.78313 0.11020 22.06661 0.50842 0.46557 0 2457086.50 5.04607 0.11495 4.81548 0.11114 22.15367 0.51132 0.46623 0 2457087.50 5.05788 0.11507 4.85218 0.11287 22.28668 0.51843 0.46660 0 2457088.50 5.09745 0.11499 4.90399 0.11428 22.51544 0.52470 0.46670 0 2457089.50 5.07103 0.11464 4.97325 0.11460 22.85144 0.52658 0.46651 0 2457090.50 5.04968 0.11275 4.94445 0.11305 22.76430 0.52047 0.46605 0 2457091.50 4.99739 0.11490 5.01386 0.11430 23.15752 0.52791 0.46531 0 2457092.50 4.99469 0.11281 5.04763 0.11556 23.41604 0.53609 0.46429 0 2457093.50 4.95726 0.11277 5.04925 0.11559 23.55486 0.53922 0.46299 0 2457094.50 4.97598 0.11137 5.05163 0.11504 23.72672 0.54034 0.46142 0 2457095.50 4.91922 0.11271 5.06195 0.11506 23.96641 0.54476 0.45958 0 2457096.50 4.83799 0.11243 5.09325 0.11505 24.33813 0.54975 0.45746 0 2457097.50 4.75175 0.11177 5.06654 0.11459 24.46475 0.55330 0.45508 0 2457098.50 4.66435 0.11035 5.04507 0.11270 24.64705 0.55057 0.45243 0 2457099.50 4.56930 0.10840 4.99991 0.11470 24.74360 0.56763 0.44952 0 2457100.50 4.56599 0.10808 5.00017 0.11468 25.09716 0.57560 0.44635 0 2457101.50 4.50495 0.10725 4.99726 0.11263 25.47104 0.57407 0.44294 0 2457102.50 4.48269 0.10706 4.96355 0.11267 25.72290 0.58391 0.43927 0 2457103.50 4.51951 0.10666 4.97403 0.11125 26.24139 0.58691 0.43537 0 2457104.50 4.61890 0.10848 4.92393 0.11268 26.47751 0.60593 0.43124 0 2457105.50 4.79683 0.11139 4.84517 0.11168 26.58857 0.61288 0.42688 0 2457106.50 4.99653 0.11509 4.84571 0.11163 27.17020 0.62591 0.42231 0 2457107.50 5.12045 0.11660 4.76233 0.11111 27.31671 0.63731 0.41754 0 2457108.50 5.20516 0.11735 4.68371 0.11070 27.51601 0.65034 0.41257 0 2457109.50 5.26663 0.11903 4.60850 0.10913 27.76154 0.65743 0.40743 0 2457110.50 5.25611 0.12033 4.60937 0.10919 28.50347 0.67519 0.40213 0 2457111.50 5.24828 0.11863 4.61210 0.10926 29.30835 0.69429 0.39669 0 2457112.50 5.19837 0.11801 4.58745 0.10870 29.98719 0.71057 0.39113 0 2457113.50 5.14969 0.11661 4.58820 0.10873 30.88037 0.73176 0.38546 0 2457114.50 5.12131 0.11487 4.64382 0.10894 32.20712 0.75555 0.37972 0 2457115.50 5.04136 0.11579 4.75242 0.11122 33.98901 0.79546 0.37393 0 2457116.50 5.01873 0.11396 4.76006 0.11138 35.12640 0.82191 0.36812 0 2457117.50 5.00203 0.11218 4.91211 0.11363 37.41662 0.86552 0.36233 0 2457118.50 5.02069 0.11305 5.08141 0.11627 39.96237 0.91438 0.35659 0 2457119.50 5.01421 0.11142 5.08606 0.11633 41.29666 0.94457 0.35094 0 2457120.50 5.00106 0.11212 5.21469 0.11783 43.70301 0.98751 0.34543 0 2457121.50 4.96350 0.11061 5.30326 0.11909 45.84917 1.02962 0.34010 0 2457122.50 4.94717 0.11256 5.31915 0.11988 47.39723 1.06823 0.33500 0 2457123.50 4.87750 0.10832 5.32188 0.11993 48.81548 1.10003 0.33018 0 2457124.50 4.80233 0.10859 5.24366 0.11886 49.43166 1.12052 0.32570 0 2457125.50 4.75095 0.11189 5.17206 0.11714 50.00737 1.13259 0.32160 0 2457126.50 4.73371 0.11149 5.16831 0.11707 51.12888 1.15810 0.31794 0 2457127.50 4.73682 0.11245 5.07170 0.11607 51.19081 1.17150 0.31476 0 2457128.50 4.79285 0.11231 5.06576 0.11597 52.00131 1.19051 0.31212 0 2457129.50 4.82998 0.11255 4.97692 0.11358 51.77579 1.18162 0.31004 0 2457130.50 4.90582 0.11374 4.93812 0.11239 51.86401 1.18037 0.30857 0 2457131.50 5.01103 0.11653 4.93029 0.11228 52.06774 1.18577 0.30772 0 2457132.50 5.09996 0.11727 4.84273 0.11196 51.21266 1.18395 0.30751 0 2457133.50 5.20798 0.11802 4.83488 0.11180 50.98597 1.17903 0.30794 0 2457134.50 5.33159 0.11936 4.76197 0.10994 49.87045 1.15135 0.30901 0 2457135.50 5.41379 0.12106 4.76647 0.11087 49.37700 1.14857 0.31070 0 2457136.50 5.37275 0.12075 4.75840 0.11083 48.57833 1.13146 0.31297 0 2457137.50 5.23336 0.11765 4.76610 0.11178 47.78725 1.12078 0.31581 0 2457138.50 5.11562 0.11604 4.75828 0.11174 46.71227 1.09699 0.31916 0 2457139.50 4.99788 0.11493 4.75959 0.11154 45.62648 1.06928 0.32298 0 2457140.50 4.89989 0.11223 4.76728 0.11208 44.52380 1.04679 0.32722 0 2457141.50 4.86766 0.11143 4.76728 0.11208 43.29618 1.01793 0.33183 0 2457142.50 4.78802 0.11090 4.81591 0.11351 42.46864 1.00096 0.33675 0 2457143.50 4.71517 0.10921 4.84918 0.11347 41.47498 0.97050 0.34193 0 2457144.50 4.73322 0.11069 4.84918 0.11347 40.19573 0.94056 0.34733 0 2457145.50 4.74863 0.11170 4.87108 0.11525 39.11404 0.92543 0.35290 0 2457146.50 4.75768 0.11154 4.86203 0.11554 37.81336 0.89862 0.35858 0 2457147.50 4.76728 0.11208 4.94240 0.11713 37.23213 0.88235 0.36434 0 2457148.50 4.81591 0.11351 4.94240 0.11713 36.07406 0.85491 0.37014 0 2457149.50 4.84918 0.11347 4.94717 0.11652 35.00226 0.82438 0.37595 0 2457150.50 4.87108 0.11525 5.01592 0.11695 34.42268 0.80260 0.38173 0 2457151.50 4.86203 0.11554 5.06399 0.11691 33.73431 0.77882 0.38745 0 2457152.50 4.94240 0.11713 5.06399 0.11691 32.77426 0.75665 0.39308 0 2457153.50 4.94717 0.11652 5.08950 0.11684 32.03252 0.73537 0.39860 0 2457154.50 5.01592 0.11695 5.14443 0.11740 31.51923 0.71932 0.40400 0 2457155.50 5.06399 0.11691 5.16363 0.11814 30.83103 0.70539 0.40925 0 2457156.50 5.08950 0.11684 5.20064 0.11859 30.29523 0.69080 0.41432 0 2457157.50 5.14443 0.11740 5.20064 0.11859 29.59138 0.67475 0.41922 0 2457158.50 5.16363 0.11814 5.15329 0.11691 28.67491 0.65054 0.42393 0 2457159.50 5.20064 0.11859 5.09923 0.11538 27.78146 0.62861 0.42842 0 2457160.50 5.15329 0.11691 5.03837 0.11416 26.90950 0.60971 0.43271 0 2457161.50 5.09922 0.11538 5.00944 0.11551 26.26060 0.60554 0.43676 0 2457162.50 5.03837 0.11416 4.90203 0.11449 25.25391 0.58984 0.44058 0 2457163.50 5.00944 0.11551 4.90203 0.11449 24.84867 0.58037 0.44416 0 2457164.50 4.90203 0.11449 4.78759 0.11315 23.90870 0.56504 0.44749 0 2457165.50 4.78759 0.11315 4.71897 0.11285 23.24524 0.55590 0.45056 0 2457166.50 4.71897 0.11285 4.58979 0.11063 22.32868 0.53820 0.45338 0 2457167.50 4.58979 0.11063 4.51975 0.10765 21.74213 0.51784 0.45594 0 2457168.50 4.51975 0.10765 4.47461 0.10821 21.31037 0.51533 0.45823 0 2457169.50 4.47461 0.10821 4.47461 0.10821 21.12362 0.51082 0.46025 0 2457170.50 4.46519 0.10756 4.46519 0.10756 20.91982 0.50391 0.46200 0 2457171.50 4.49370 0.10882 4.49370 0.10882 20.91952 0.50658 0.46347 0 2457172.50 4.47785 0.10783 4.47785 0.10783 20.73825 0.49937 0.46467 0 2457173.50 4.48734 0.10647 4.48734 0.10647 20.69985 0.49112 0.46560 0 2457174.50 4.50997 0.10671 4.50997 0.10671 20.74674 0.49088 0.46624 0 2457175.50 4.55945 0.10041 4.55945 0.10041 20.94148 0.46118 0.46661 0 2457176.50 4.62942 0.10612 4.62942 0.10612 21.25496 0.48722 0.46669 0 2457177.50 4.69199 0.10956 4.62942 0.10612 21.27252 0.48762 0.46650 0 2457178.50 4.75426 0.11198 4.69199 0.10956 21.60371 0.50446 0.46603 0 2457179.50 4.78545 0.11304 4.75426 0.11198 21.96107 0.51728 0.46528 0 2457180.50 4.87640 0.11350 4.78545 0.11304 22.20317 0.52448 0.46425 0 2457181.50 4.96466 0.11516 4.87640 0.11350 22.75286 0.52959 0.46295 0 2457182.50 5.02730 0.11545 4.96466 0.11516 23.32357 0.54100 0.46137 0 2457183.50 5.04350 0.11613 5.02730 0.11545 23.80865 0.54677 0.45952 0 2457184.50 5.11947 0.11790 5.02730 0.11545 24.03022 0.55186 0.45739 0 2457185.50 5.09293 0.11745 5.04350 0.11613 24.36177 0.56094 0.45500 0 2457186.50 5.11030 0.11711 5.11947 0.11790 25.01997 0.57619 0.45234 0 2457187.50 5.05305 0.11607 5.09293 0.11745 25.21439 0.58148 0.44943 0 2457188.50 4.97280 0.11411 5.11030 0.11711 25.66150 0.58806 0.44625 0 2457189.50 4.91744 0.11405 5.05305 0.11607 25.76802 0.59190 0.44283 0 2457190.50 4.84490 0.11393 4.97280 0.11411 25.78446 0.59169 0.43916 0 2457191.50 4.79138 0.11299 4.97280 0.11411 26.24975 0.60236 0.43525 0 2457192.50 4.86607 0.11563 4.91744 0.11405 26.45860 0.61364 0.43111 0 2457193.50 4.80778 0.11368 4.84490 0.11393 26.60415 0.62560 0.42674 0 2457194.50 4.72465 0.11319 4.79138 0.11299 26.88386 0.63397 0.42217 0 2457195.50 4.68080 0.11352 4.86607 0.11563 27.93172 0.66373 0.41739 0 2457196.50 4.60758 0.11175 4.86607 0.11563 28.60882 0.67982 0.41242 0 2457197.50 4.49266 0.10660 4.80778 0.11368 28.98474 0.68534 0.40727 0 2457198.50 4.40073 0.10644 4.72465 0.11319 29.24034 0.70050 0.40197 0 2457199.50 4.35864 0.10637 4.68080 0.11352 29.77023 0.72200 0.39652 0 2457200.50 4.29601 0.10571 4.60758 0.11175 30.14538 0.73116 0.39095 0 2457201.50 4.26023 0.10527 4.60758 0.11175 31.03899 0.75283 0.38529 0 2457202.50 4.27485 0.10624 4.49266 0.10660 31.18776 0.73999 0.37954 0 2457203.50 4.34751 0.10660 4.40073 0.10644 31.50366 0.76197 0.37375 0 2457204.50 4.49828 0.10988 4.35864 0.10637 32.19529 0.78568 0.36794 0 2457205.50 4.61872 0.11157 4.35864 0.10637 33.23323 0.81101 0.36215 0 2457206.50 4.70667 0.11334 4.29601 0.10571 33.81880 0.83217 0.35641 0 2457207.50 4.82802 0.11567 4.26023 0.10527 34.62502 0.85558 0.35077 0 2457208.50 4.91793 0.11610 4.27485 0.10624 35.86096 0.89125 0.34526 0 2457209.50 4.95995 0.11657 4.27485 0.10624 36.99291 0.91938 0.33994 0 2457210.50 5.05592 0.11760 4.34708 0.10659 38.77060 0.95069 0.33485 0 2457211.50 5.09959 0.11809 4.49413 0.10978 41.25856 1.00780 0.33004 0 2457212.50 5.10436 0.11792 4.49068 0.10969 42.36754 1.03490 0.32557 0 2457213.50 5.04228 0.11622 4.60660 0.11132 44.57308 1.07716 0.32148 0 2457214.50 4.98503 0.11526 4.69363 0.11281 46.46368 1.11678 0.31783 0 2457215.50 4.94313 0.11466 4.69033 0.11268 47.36832 1.13797 0.31467 0 2457216.50 4.86662 0.11284 4.80409 0.11471 49.33804 1.17812 0.31204 0 2457217.50 4.83952 0.11190 4.79991 0.11455 49.95177 1.19208 0.30999 0 2457218.50 4.77591 0.11104 4.87717 0.11474 51.23561 1.20532 0.30853 0 2457219.50 4.74233 0.11165 4.90673 0.11530 51.82432 1.21780 0.30770 0 2457220.50 4.72160 0.11152 4.90050 0.11515 51.82240 1.21773 0.30751 0 2457221.50 4.64606 0.11180 4.96024 0.11591 52.30000 1.22217 0.30796 0 2457222.50 4.60190 0.11173 4.95122 0.11575 51.83811 1.21192 0.30905 0 2457223.50 4.56238 0.10848 4.98543 0.11595 51.62494 1.20067 0.31076 0 2457224.50 4.49333 0.10777 4.96712 0.11486 50.68369 1.17203 0.31305 0 2457225.50 4.40966 0.10821 4.95746 0.11465 49.67598 1.14881 0.31591 0 2457226.50 4.35198 0.10616 4.90698 0.11436 48.13881 1.12192 0.31927 0 2457227.50 4.27974 0.10512 4.89903 0.11425 46.92714 1.09441 0.32310 0 2457228.50 4.25876 0.10419 4.86314 0.11318 45.38135 1.05613 0.32736 0 2457229.50 4.25173 0.10428 4.82830 0.11287 43.81166 1.02417 0.33197 0 2457230.50 4.27821 0.10620 4.82308 0.11279 42.49266 0.99369 0.33690 0 2457231.50 4.36904 0.10677 4.76917 0.11212 40.75187 0.95804 0.34210 0 2457232.50 4.47859 0.10873 4.70648 0.11111 38.97505 0.92010 0.34750 0 2457233.50 4.59321 0.10873 4.70171 0.11108 37.71709 0.89108 0.35307 0 2457234.50 4.69034 0.11018 4.65197 0.11102 36.14426 0.86261 0.35876 0 2457235.50 4.74441 0.11030 4.63453 0.11063 34.87888 0.83258 0.36452 0 2457236.50 4.75982 0.11180 4.59749 0.10996 33.52432 0.80184 0.37032 0 2457237.50 4.76435 0.11246 4.59415 0.10992 32.47386 0.77698 0.37613 0 2457238.50 4.80661 0.11259 4.55310 0.10950 31.21767 0.75075 0.38190 0 2457239.50 4.77744 0.11063 4.47920 0.10876 29.81185 0.72389 0.38762 0 2457240.50 4.75933 0.11233 4.43391 0.10734 28.67138 0.69411 0.39325 0 2457241.50 4.75658 0.11135 4.43122 0.10732 27.86602 0.67487 0.39877 0 2457242.50 4.73805 0.11146 4.37209 0.10663 26.76563 0.65277 0.40416 0 2457243.50 4.70685 0.11166 4.33575 0.10666 25.86791 0.63633 0.40940 0 2457244.50 4.62954 0.11065 4.27525 0.10655 24.88619 0.62020 0.41448 0 2457245.50 4.59315 0.11101 4.27278 0.10596 24.29484 0.60248 0.41937 0 2457246.50 4.58813 0.11019 4.30356 0.10767 23.93075 0.59874 0.42407 0 2457247.50 4.54905 0.10936 4.30425 0.10773 23.43557 0.58655 0.42856 0 2457248.50 4.52330 0.10876 4.33985 0.10844 23.16513 0.57883 0.43283 0 2457249.50 4.44360 0.10790 4.39755 0.11044 23.04023 0.57864 0.43688 0 2457250.50 4.40024 0.10704 4.42574 0.10999 22.78847 0.56637 0.44069 0 2457251.50 4.34635 0.10639 4.47453 0.11122 22.67085 0.56349 0.44426 0 2457252.50 4.32170 0.10636 4.49691 0.11108 22.44724 0.55449 0.44759 0 2457253.50 4.26225 0.10661 4.49575 0.11111 22.13681 0.54711 0.45065 0 2457254.50 4.27173 0.10608 4.50778 0.11095 21.92180 0.53954 0.45346 0 2457255.50 4.30947 0.10813 4.53060 0.10967 21.78722 0.52739 0.45601 0 2457256.50 4.34855 0.10885 4.51149 0.10898 21.47983 0.51888 0.45829 0 2457257.50 4.40752 0.11080 4.52544 0.11003 21.35821 0.51931 0.46031 0 2457258.50 4.42966 0.11022 4.49363 0.10896 21.04858 0.51039 0.46205 0 2457259.50 4.47431 0.11135 4.50159 0.10944 20.95255 0.50936 0.46352 0 2457260.50 4.49284 0.11118 4.50159 0.10944 20.84525 0.50676 0.46471 0 2457261.50 4.50452 0.11096 4.50042 0.10957 20.75810 0.50540 0.46562 0 2457262.50 4.52923 0.10967 4.48526 0.10751 20.63171 0.49454 0.46626 0 2457263.50 4.51149 0.10898 4.46079 0.10817 20.48775 0.49680 0.46662 0 2457264.50 4.52544 0.11003 4.46733 0.10820 20.51093 0.49678 0.46669 0 2457265.50 4.49363 0.10896 4.44213 0.10727 20.41283 0.49292 0.46649 0 2457266.50 4.50159 0.10944 4.43486 0.10831 20.42142 0.49872 0.46601 0 2457267.50 4.50042 0.10957 4.43486 0.10831 20.48809 0.50035 0.46525 0 2457268.50 4.48526 0.10751 4.39430 0.10716 20.39151 0.49725 0.46422 0 2457269.50 4.46079 0.10817 4.38556 0.10547 20.46654 0.49223 0.46290 0 2457270.50 4.46733 0.10820 4.32176 0.10560 20.30792 0.49621 0.46132 0 2457271.50 4.44213 0.10727 4.27387 0.10610 20.24590 0.50260 0.45945 0 2457272.50 4.43486 0.10831 4.27730 0.10762 20.45146 0.51458 0.45732 0 2457273.50 4.39430 0.10716 4.24775 0.10631 20.52503 0.51368 0.45492 0 2457274.50 4.38556 0.10547 4.24775 0.10631 20.76756 0.51975 0.45226 0 2457275.50 4.32176 0.10560 4.23668 0.10624 20.98397 0.52621 0.44933 0 2457276.50 4.27387 0.10610 4.28513 0.10840 21.52765 0.54460 0.44615 0 2457277.50 4.27730 0.10762 4.33485 0.10844 22.11646 0.55328 0.44272 0 2457278.50 4.24775 0.10631 4.37834 0.10979 22.71416 0.56957 0.43904 0 2457279.50 4.23668 0.10624 4.40874 0.10819 23.28548 0.57144 0.43513 0 2457280.50 4.28513 0.10840 4.42036 0.10671 23.79841 0.57450 0.43098 0 2457281.50 4.33485 0.10844 4.42036 0.10671 24.28853 0.58633 0.42661 0 2457282.50 4.37834 0.10979 4.47938 0.10624 25.15036 0.59648 0.42202 0 2457283.50 4.40874 0.10819 4.54416 0.10967 26.10263 0.62994 0.41724 0 2457284.50 4.42036 0.10671 4.56819 0.11158 26.87778 0.65652 0.41226 0 2457285.50 4.47938 0.10624 4.62557 0.11223 27.90821 0.67716 0.40711 0 2457286.50 4.54416 0.10967 4.62557 0.11223 28.65061 0.69517 0.40181 0 2457287.50 4.56819 0.11158 4.63266 0.11275 29.48921 0.71773 0.39635 0 2457288.50 4.62557 0.11223 4.61303 0.11150 30.20763 0.73013 0.39078 0 2457289.50 4.63266 0.11275 4.65866 0.11304 31.41158 0.76220 0.38511 0 2457290.50 4.61303 0.11150 4.62673 0.11105 32.14845 0.77163 0.37936 0 2457291.50 4.65866 0.11304 4.62673 0.11105 33.15311 0.79574 0.37357 0 2457292.50 4.62673 0.11105 4.61633 0.11101 34.13170 0.82079 0.36776 0 2457293.50 4.61633 0.11101 4.63285 0.11149 35.35846 0.85092 0.36197 0 2457294.50 4.63285 0.11149 4.63285 0.11149 36.50616 0.87854 0.35624 0 2457295.50 4.63052 0.11114 4.63052 0.11114 37.67129 0.90420 0.35060 0 2457296.50 4.53156 0.10936 4.53156 0.10936 38.05104 0.91825 0.34510 0 2457297.50 4.42972 0.10861 4.42972 0.10861 38.36914 0.94079 0.33978 0 2457298.50 4.35834 0.10715 4.42972 0.10861 39.54349 0.96958 0.33470 0 2457299.50 4.30115 0.10475 4.35834 0.10715 40.04644 0.98453 0.32990 0 2457300.50 4.23271 0.10463 4.30115 0.10475 40.61221 0.98908 0.32543 0 2457301.50 4.16463 0.10336 4.30115 0.10475 41.64832 1.01431 0.32136 0 2457302.50 4.13442 0.10401 4.23271 0.10463 41.92836 1.03641 0.31773 0 2457303.50 4.08298 0.10277 4.23271 0.10463 42.77086 1.05723 0.31458 0 2457304.50 4.03484 0.10235 4.16463 0.10336 42.79051 1.06198 0.31197 0 2457305.50 4.04915 0.10333 4.13442 0.10401 43.04102 1.08277 0.30993 0 2457306.50 4.04456 0.10298 4.13442 0.10401 43.44266 1.09288 0.30850 0 2457307.50 4.08995 0.10392 4.08298 0.10277 43.12823 1.08552 0.30769 0 2457308.50 4.15429 0.10384 4.03484 0.10235 42.66690 1.08228 0.30752 0 2457309.50 4.18549 0.10319 4.03484 0.10235 42.53613 1.07896 0.30799 0 2457310.50 4.27711 0.10412 4.04915 0.10333 42.38180 1.08149 0.30910 0 2457311.50 4.35681 0.10527 4.04915 0.10333 41.91300 1.06953 0.31082 0 2457312.50 4.45418 0.10759 4.04456 0.10298 41.24915 1.05030 0.31313 0 2457313.50 4.57401 0.10944 4.08995 0.10392 40.95827 1.04073 0.31600 0 2457314.50 4.74043 0.11094 4.08995 0.10392 40.09570 1.01881 0.31938 0 2457315.50 4.82741 0.11201 4.15755 0.10392 39.79401 0.99466 0.32323 0 2457316.50 4.88399 0.11212 4.16395 0.10408 38.82435 0.97041 0.32749 0 2457317.50 4.86099 0.10886 4.20148 0.10359 38.09027 0.93913 0.33212 0 2457318.50 4.86013 0.11204 4.29349 0.10455 37.79195 0.92024 0.33706 0 2457319.50 4.81536 0.11142 4.29781 0.10466 36.68926 0.89346 0.34226 0 2457320.50 4.75114 0.11220 4.37398 0.10570 36.18645 0.87450 0.34767 0 2457321.50 4.68649 0.11144 4.46954 0.10810 35.81953 0.86636 0.35324 0 2457322.50 4.56196 0.10983 4.58913 0.10976 35.62109 0.85198 0.35893 0 2457323.50 4.45767 0.10767 4.59083 0.10980 34.51643 0.82552 0.36470 0 2457324.50 4.42984 0.10791 4.74002 0.11118 34.53045 0.80995 0.37050 0 2457325.50 4.37547 0.10684 4.82567 0.11210 34.07816 0.79163 0.37631 0 2457326.50 4.33039 0.10658 4.87617 0.11224 33.40192 0.76883 0.38208 0 2457327.50 4.30390 0.10647 4.87564 0.11225 32.42132 0.74640 0.38779 0 2457328.50 4.31754 0.10722 4.84444 0.10968 31.29878 0.70861 0.39342 0 2457329.50 4.23644 0.10819 4.82802 0.11211 30.33583 0.70440 0.39894 0 2457330.50 4.28066 0.10714 4.78635 0.11135 29.27809 0.68115 0.40433 0 2457331.50 4.29136 0.10685 4.74322 0.11219 28.27707 0.66883 0.40956 0 2457332.50 4.27895 0.10826 4.74288 0.11219 27.58794 0.65257 0.41463 0 2457333.50 4.30922 0.10890 4.69348 0.11171 26.66824 0.63471 0.41952 0 2457334.50 4.37247 0.10836 4.60164 0.11082 25.57129 0.61584 0.42421 0 2457335.50 4.39112 0.10971 4.50497 0.10893 24.51309 0.59270 0.42869 0 2457336.50 4.42458 0.10919 4.46228 0.10886 23.80459 0.58071 0.43296 0 2457337.50 4.45492 0.10876 4.46327 0.10888 23.37165 0.57017 0.43700 0 2457338.50 4.47963 0.10837 4.42906 0.10775 22.79386 0.55451 0.44081 0 2457339.50 4.54881 0.11076 4.40556 0.10820 22.31076 0.54793 0.44437 0 2457340.50 4.65627 0.11118 4.37353 0.10714 21.82179 0.53459 0.44768 0 2457341.50 4.73860 0.11202 4.36064 0.10721 21.46299 0.52769 0.45074 0 2457342.50 4.82025 0.11238 4.29759 0.10804 20.89207 0.52521 0.45355 0 2457343.50 4.85414 0.11258 4.31684 0.10710 20.75253 0.51488 0.45609 0 2457344.50 4.80515 0.11163 4.31763 0.10710 20.55091 0.50978 0.45836 0 2457345.50 4.75744 0.11225 4.30475 0.10692 20.31159 0.50450 0.46036 0 2457346.50 4.72704 0.11122 4.28457 0.10642 20.06505 0.49837 0.46210 0 2457347.50 4.72808 0.11217 4.27212 0.10614 19.88101 0.49392 0.46356 0 2457348.50 4.70526 0.11215 4.30205 0.10632 19.91851 0.49224 0.46474 0 2457349.50 4.66477 0.11240 4.31545 0.10736 19.90287 0.49513 0.46565 0 2457350.50 4.57615 0.11081 4.36509 0.10727 20.07767 0.49338 0.46627 0 2457351.50 4.50856 0.11020 4.39345 0.10698 20.17791 0.49132 0.46662 0 2457352.50 4.49816 0.10892 4.39238 0.10695 20.16697 0.49103 0.46669 0 2457353.50 4.49792 0.11018 4.41974 0.10793 20.31083 0.49598 0.46648 0 2457354.50 4.45516 0.10794 4.50078 0.10862 20.72668 0.50022 0.46599 0 2457355.50 4.40892 0.10720 4.61159 0.10953 21.30711 0.50606 0.46523 0 2457356.50 4.36311 0.10787 4.68708 0.11086 21.75353 0.51451 0.46418 0 2457357.50 4.35394 0.10707 4.76567 0.11054 22.24475 0.51597 0.46286 0 2457358.50 4.31736 0.10699 4.80164 0.11125 22.56804 0.52286 0.46126 0 2457359.50 4.28965 0.10476 4.80079 0.11122 22.74806 0.52702 0.45939 0 2457360.50 4.23999 0.10374 0.00000 0.00000 -NaN -NaN 0.00000 0 2457361.50 4.24353 0.10461 0.00000 0.00000 -NaN -NaN 0.00000 0 2457362.50 4.25509 0.10548 0.00000 0.00000 -NaN -NaN 0.00000 0 2457363.50 4.31956 0.10580 0.00000 0.00000 -NaN -NaN 0.00000 0 2457364.50 4.34831 0.10567 0.00000 0.00000 -NaN -NaN 0.00000 0 2457365.50 4.37926 0.10763 0.00000 0.00000 -NaN -NaN 0.00000 0 2457366.50 4.46966 0.10723 0.00000 0.00000 -NaN -NaN 0.00000 0 2457367.50 4.58385 0.10850 0.00000 0.00000 -NaN -NaN 0.00000 0 2457368.50 4.65645 0.11016 0.00000 0.00000 -NaN -NaN 0.00000 0 2457369.50 4.73462 0.10949 0.00000 0.00000 -NaN -NaN 0.00000 0 2457370.50 4.77310 0.11052 0.00000 0.00000 -NaN -NaN 0.00000 0 2457371.50 4.80802 0.11250 0.00000 0.00000 -NaN -NaN 0.00000 0 2457372.50 4.75848 0.11171 0.00000 0.00000 -NaN -NaN 0.00000 0 2457373.50 4.74312 0.10959 0.00000 0.00000 -NaN -NaN 0.00000 0 2457374.50 4.65364 0.10891 0.00000 0.00000 -NaN -NaN 0.00000 0 2457375.50 4.63132 0.10919 0.00000 0.00000 -NaN -NaN 0.00000 0 2457376.50 4.61835 0.10748 0.00000 0.00000 -NaN -NaN 0.00000 0 2457377.50 4.57511 0.10879 0.00000 0.00000 -NaN -NaN 0.00000 0 2457378.50 4.60826 0.10810 0.00000 0.00000 -NaN -NaN 0.00000 0 2457379.50 4.62184 0.11144 0.00000 0.00000 -NaN -NaN 0.00000 0 2457380.50 4.62551 0.11170 0.00000 0.00000 -NaN -NaN 0.00000 0 2457381.50 4.62269 0.11242 0.00000 0.00000 -NaN -NaN 0.00000 0 2457382.50 4.55211 0.11065 0.00000 0.00000 -NaN -NaN 0.00000 0 2457383.50 4.48513 0.11029 0.00000 0.00000 -NaN -NaN 0.00000 0 2457384.50 4.48348 0.11034 0.00000 0.00000 -NaN -NaN 0.00000 0 2457385.50 4.42525 0.11018 0.00000 0.00000 -NaN -NaN 0.00000 0 2457386.50 4.38024 0.10940 0.00000 0.00000 -NaN -NaN 0.00000 0 2457387.50 4.33106 0.10832 0.00000 0.00000 -NaN -NaN 0.00000 0 2457388.50 4.28170 0.10679 0.00000 0.00000 -NaN -NaN 0.00000 0 2457389.50 4.28133 0.10593 0.00000 0.00000 -NaN -NaN 0.00000 0